| Total Complexity | 7 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class IssueTest extends TestCase |
||
| 11 | { |
||
| 12 | /** @var Issue */ |
||
| 13 | private $issue; |
||
| 14 | |||
| 15 | public function testNumber() : void |
||
| 16 | { |
||
| 17 | self::assertEquals(1, $this->issue->getNumber()); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function testGetTitle() : void |
||
| 21 | { |
||
| 22 | self::assertEquals('Test', $this->issue->getTitle()); |
||
| 23 | } |
||
| 24 | |||
| 25 | public function testGetUrl() : void |
||
| 26 | { |
||
| 27 | self::assertEquals('https://www.google.com', $this->issue->getUrl()); |
||
| 28 | } |
||
| 29 | |||
| 30 | public function testGetUser() : void |
||
| 33 | } |
||
| 34 | |||
| 35 | public function testGetLabels() : void |
||
| 38 | } |
||
| 39 | |||
| 40 | public function testRender() : void |
||
| 43 | } |
||
| 44 | |||
| 45 | protected function setUp() : void |
||
| 56 |