/**
* 测试返回值为字符串类型
*/
public function testReturnString()
{
$expected = 'string';
// 实际情况把下面的'string'换为被测试方法或函数
$result = 'string';
$this->assertEquals($expected, $result);
}
/**
* 测试返回值是数字类型
*/
public function testReturnInt()
{
$expected = 10;
// 实际情况把20换为被测试方法或函数
$result = 20;
$this->assertGreaterThan($expected, $result);
}
/**
文章来源于领测软件测试网 https://www.ltesting.net/