]> BookStack Code Mirror - bookstack/blob - tests/Exports/ZipImportRunnerTest.php
ZIP Imports: Added high level import run tests
[bookstack] / tests / Exports / ZipImportRunnerTest.php
1 <?php
2
3 namespace Tests\Exports;
4
5 use BookStack\Exports\ZipExports\ZipImportRunner;
6 use Tests\TestCase;
7
8 class ZipImportRunnerTest extends TestCase
9 {
10     protected ZipImportRunner $runner;
11
12     protected function setUp(): void
13     {
14         parent::setUp();
15         $this->runner = app()->make(ZipImportRunner::class);
16     }
17
18     // TODO - Test full book import
19     // TODO - Test full chapter import
20     // TODO - Test full page import
21 }