* 测试返回值是数组类型
*/
public function testReturnArray()
{
// 实际情况把$result赋值为被测试方法或函数
$result = array('test' => 'hello');
// 实际情况把'test'换为要测试的键名称
$this->assertArrayHasKey('test', $result);
}
/**
* 测试返回值是对象类型
*/
public function testReturnObject()
{
// 实际情况把$this换为期望的对象
$expected = $this;
// 实际情况把$this换为被测试方法或函数
$result = $this;
$this->assertSame($expected, $result);
}
}
?>
延伸阅读
文章来源于领测软件测试网 https://www.ltesting.net/