3

我的模型(codeigniter 框架)中有一个函数,它在 cookie 中设置两个值。

我需要为此编写单元测试。所以在这种情况下,我需要调用两个 assertEqual() 函数以确保设置了两个 cookie。

有没有人知道在同一个测试用例中调用两个断言函数?

4

1 回答 1

1
// 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

于 2012-07-18T18:44:07.963 回答