コード例 #1
0
ファイル: TextTest.php プロジェクト: braf/phalcana-core
 /**
  * Sets up the test enviroment
  */
 public function setUp()
 {
     parent::setUp();
     Text::alternate();
 }
コード例 #2
0
ファイル: NumTest.php プロジェクト: braf/phalcana-core
 /**
  * Tear down environment
  */
 public function tearDown()
 {
     parent::tearDown();
     setlocale(LC_ALL, $this->default_locale);
 }
コード例 #3
0
ファイル: DateTest.php プロジェクト: braf/phalcana-core
 /**
  * Restores original timezone after testing.
  */
 public function tearDown()
 {
     date_default_timezone_set($this->_original_timezone);
     parent::tearDown();
 }