| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function testBasicTest() |
||
| 16 | { |
||
| 17 | $testArray = [ |
||
| 18 | [ |
||
| 19 | 'name' => 'Babak', |
||
| 20 | 'family' => 'Nodoust', |
||
| 21 | 'description' => 'I am powerful man in dokhan since 2017 for ever', |
||
| 22 | ], |
||
| 23 | [ |
||
| 24 | 'name' => 'Elnaz', |
||
| 25 | 'family' => 'Moslemi', |
||
| 26 | 'description' => 'I am smart woman of the world', |
||
| 27 | ], |
||
| 28 | ]; |
||
| 29 | $excelHelper = new ExcelHelper(); |
||
| 30 | $excelHelper->table($testArray)->createExcelFile(); |
||
| 31 | |||
| 32 | $this->assertTrue(true); |
||
| 33 | } |
||
| 35 |