| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class BuilderTest extends PHPUnit_Framework_TestCase |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var Master |
||
| 25 | */ |
||
| 26 | private $master; |
||
| 27 | |||
| 28 | protected function setUp(): void |
||
| 29 | { |
||
| 30 | $this->master = new Master(); |
||
| 31 | } |
||
| 32 | |||
| 33 | public function testInstance() |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @return Master |
||
| 48 | */ |
||
| 49 | public function getMaster(): Master |
||
| 52 | } |
||
| 53 | } |
||
| 54 |