增加inputTest方法

This commit is contained in:
thinkphp
2016-01-28 17:00:33 +08:00
parent 7dec0b2f9d
commit f70c370ced

View File

@@ -127,6 +127,15 @@ class inputTest extends \PHPUnit_Framework_TestCase
$this->assertEquals(true, Input::post('d/b')); $this->assertEquals(true, Input::post('d/b'));
} }
public function testHasValue()
{
$_GET['name'] = 'value';
$this->assertEquals(true, Input::get('?name'));
$this->assertEquals(false, Input::get('?id'));
$this->assertEquals(true, Input::get('?get.name'));
$this->assertEquals(false, Input::get('?get.id'));
}
public function testSuperglobals() public function testSuperglobals()
{ {
Input::setFilter('trim'); Input::setFilter('trim');