Skip to content

Commit

Permalink
[ECVS-6] added test case fault code not empty.
Browse files Browse the repository at this point in the history
  • Loading branch information
arslanim committed Dec 23, 2023
1 parent 2685e96 commit b1d4234
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/unit/exceptions/service/UnknownServiceErrorExceptionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,17 @@ public function getDefaultCreateExceptionProvidedData(): array
'expectedPrevException' => null,
],
],
'fault code not empty' => [
'exceptionData' => [
'faultCode' => 'foo',
],
'expectedExceptionData' => [
'expectedFaultCode' => 'foo',
'expectedMessage' => '',
'expectedCode' => 0,
'expectedPrevException' => null,
],
],
];
}
}

0 comments on commit b1d4234

Please sign in to comment.