| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class ExportTest extends TestCase |
||
| 7 | { |
||
| 8 | protected $export; |
||
| 9 | |||
| 10 | protected function setUp(): void |
||
| 17 | ]); |
||
| 18 | } |
||
| 19 | |||
| 20 | public function testCreateWorkSheet() |
||
| 21 | { |
||
| 22 | $this->export->createWorkSheet('TestSheet'); |
||
| 23 | $this->assertEquals('TestSheet', $this->export->workSheet->getTitle()); |
||
| 24 | } |
||
| 25 | |||
| 26 | |||
| 27 | public function testSaveFile() |
||
| 34 | } |
||
| 35 | } |
||
| 36 |