0
我想將我的功能測試結果與TestRail集成。由於測試軌接受狀態更新意味着測試是成功還是未能與其集成。但PHPunit函數像assertEqual,assertTrue等不返回任何值。 我們該怎麼做?如何將PHPunit與testrail集成
public function testGetItem()
{
$this->specify("Verify the functionality of the method ", function ($itemId, $orgId, $expectedResult) {
$result = $this->itemRepository->getItemInfo($ItemId , $orgId);
//$this->assertEquals($expectedResult , $result)
$testRail=new TestRailIntegration();
if($this->assertEquals($expectedResult , $result)){
$testRail->postResultsToTestRail("34530","1");
} else{
$testRail->postResultsToTestRail("34530","");
}
//34530 is testrail id
}
當測試失敗時,它不會進入else條件。