| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class Test extends TestCase |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var Check |
||
| 24 | */ |
||
| 25 | protected $checker; |
||
| 26 | |||
| 27 | public function setUp() |
||
| 28 | { |
||
| 29 | $this->checker = new Check(); |
||
| 30 | } |
||
| 31 | |||
| 32 | public function testCheck() |
||
| 33 | { |
||
| 34 | $this->assertInstanceOf(CheckInterface::class, $this->checker); |
||
| 35 | $this->assertInstanceOf(ResultInterface::class, $this->checker->check()); |
||
| 36 | } |
||
| 37 | |||
| 38 | public function testOher() |
||
| 42 | ); |
||
| 43 | } |
||
| 44 | } |
||
| 45 |