瀏覽代碼

tests

develop
Robin Thoni 8 年之前
父節點
當前提交
e20e7a364b
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6
    0
      tests/LuApplicationTest.php

+ 6
- 0
tests/LuApplicationTest.php 查看文件

@@ -84,10 +84,16 @@ class LuApplicationTest extends \PHPUnit_Framework_TestCase
84 84
     {
85 85
         putenv("lu_setting_test=24");
86 86
         $this->assertSame("24", LuticateApplication::getInstance()->getSetting("test"));
87
+        putenv("lu_setting_test");
87 88
     }
88 89
 
89 90
     public function testSettings4()
90 91
     {
91 92
         $this->assertSame("defaultValue", LuticateApplication::getInstance()->getSetting("not-a-setting", "defaultValue"));
92 93
     }
94
+
95
+    public function testSettings5()
96
+    {
97
+        $this->assertSame(42, LuticateApplication::getInstance()->getSetting("test", "defaultValue"));
98
+    }
93 99
 }

Loading…
取消
儲存