| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public function testInstance() |
||
| 35 | { |
||
| 36 | $this->master->getBuilder() |
||
| 37 | ->addParam('hdd', 1024) |
||
| 38 | ->addParam('ram', 8192) |
||
| 39 | ->addParam('cpu', 3000) |
||
| 40 | ->addParam('gpu', 5000) |
||
| 41 | ->addParam('software', 'UNIX'); |
||
| 42 | |||
| 43 | $this->assertInstanceOf(AbstractComputer::class, $this->master->build()); |
||
| 44 | } |
||
| 46 |