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