| Total Complexity | 3 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class IssueClientResponseTest extends TestCase |
||
| 11 | { |
||
| 12 | /** @var mixed[] */ |
||
| 13 | private $body; |
||
| 14 | |||
| 15 | /** @var string|null */ |
||
| 16 | private $nextUrl; |
||
| 17 | |||
| 18 | /** @var IssueClientResponse */ |
||
| 19 | private $issueClientResponse; |
||
| 20 | |||
| 21 | public function testGetBody() : void |
||
| 22 | { |
||
| 23 | self::assertEquals($this->body, $this->issueClientResponse->getBody()); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testGetNextUrl() : void |
||
| 27 | { |
||
| 28 | self::assertEquals($this->nextUrl, $this->issueClientResponse->getNextUrl()); |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function setUp() : void |
||
| 39 | ); |
||
| 40 | } |
||
| 41 | } |
||
| 42 |