Skip to content

Commit

Permalink
修正单元测试
Browse files Browse the repository at this point in the history
  • Loading branch information
liu21st committed Apr 23, 2016
1 parent a880163 commit 1f40eed
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/thinkphp/library/think/appTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ public function testRun()
$ns->setAccessible(true);
$this->assertEquals(true, in_array('/path/', $ns->getValue()));

$this->assertEquals(true, function_exists('L'));
$this->assertEquals(true, function_exists('C'));
$this->assertEquals(true, function_exists('I'));
$this->assertEquals(true, function_exists('lang'));
$this->assertEquals(true, function_exists('config'));
$this->assertEquals(true, function_exists('input'));

$this->assertEquals(Config::get('default_timezone'), date_default_timezone_get());

Expand Down

0 comments on commit 1f40eed

Please sign in to comment.