| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | final class ResponseTest extends TestCase |
||
| 21 | { |
||
| 22 | public function testGetSchemaIdReturnsCorrectId() : void |
||
| 23 | { |
||
| 24 | $schemaId = 42; |
||
| 25 | $response = new Response([Keys::SCHEMA_ID => $schemaId], []); |
||
| 26 | |||
| 27 | self::assertSame($schemaId, $response->getSchemaId()); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function testHasBodyKeyReturnsTrue() : void |
||
| 31 | { |
||
| 32 | $response = new Response([], [42 => null]); |
||
| 33 | |||
| 34 | self::assertTrue($response->hasBodyField(42)); |
||
| 35 | } |
||
| 36 | |||
| 37 | public function testHasBodyKeyReturnsFalse() : void |
||
| 42 | } |
||
| 43 | } |
||
| 44 |