| Total Complexity | 2 | 
| Total Lines | 47 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php | ||
| 14 | trait AssertDeleted | ||
| 15 | { | ||
| 16 | /** | ||
| 17 | * Asserts that a response object is a valid "200 OK" response following a deletion request. | ||
| 18 | * | ||
| 19 | * @param TestResponse $response | ||
| 20 | * @param array|null $expectedMeta If not null, it is the expected "meta" object. | ||
| 21 | * @param boolean $strict If true, unsafe characters are not allowed when checking members name. | ||
| 22 | * | ||
| 23 | * @return void | ||
| 24 | * @throws \PHPUnit\Framework\AssertionFailedError | ||
| 25 | */ | ||
| 26 | 27 | public static function assertIsDeletedResponse( | |
| 65 |