0
私は機能テスト結果をTestRailに統合したいと思います。テストレイル受け入れ状況の更新とは、テストが成功したか失敗したかを意味します。しかし、assertEqual、assertTrueなどのPHPunit関数は値を返しません。 どうすればこのことができますか?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条件にはなりません。