| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function testSwitchTpSlModeEndpoint() |
||
| 17 | { |
||
| 18 | $endpoint = RestBuilder::make(TestSwitchTpSlMode::class, (new SwitchTpSlModeRequest())); |
||
| 19 | |||
| 20 | $entityResponse = $endpoint->execute(EnumOutputMode::MODE_ENTITY, self::$switchCrossResponse); |
||
| 21 | |||
| 22 | $this->assertInstanceOf(CurlResponseDto::class, $entityResponse); |
||
| 23 | $body = $entityResponse->getBody(); |
||
| 24 | $this->assertInstanceOf(EntityCollection::class, $body); |
||
| 25 | } |
||
| 26 | } |