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