Robin Thoni před 8 roky
rodič
revize
e20e7a364b
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. 6
    0
      tests/LuApplicationTest.php

+ 6
- 0
tests/LuApplicationTest.php Zobrazit soubor

@@ -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
 }

Načítá se…
Zrušit
Uložit