我的模型(codeigniter 框架)中有一个函数,它在 cookie 中设置两个值。
我需要为此编写单元测试。所以在这种情况下,我需要调用两个 assertEqual() 函数以确保设置了两个 cookie。
有没有人知道在同一个测试用例中调用两个断言函数?
我的模型(codeigniter 框架)中有一个函数,它在 cookie 中设置两个值。
我需要为此编写单元测试。所以在这种情况下,我需要调用两个 assertEqual() 函数以确保设置了两个 cookie。
有没有人知道在同一个测试用例中调用两个断言函数?
// For example
public function testMyTest()
{
$foo = 'test';
$this->assertTrue(is_string($foo));
$this->assertEquals('test', $foo);
$this->assertEquals(4, strlen($foo));
}
见文档:: http://www.phpunit.de/manual/3.7/en/writing-tests-for-phpunit.html