nstack-io /
laravel-sdk
| 1 | <?php |
||
| 2 | |||
| 3 | namespace NStack\Tests\Translation; |
||
| 4 | |||
| 5 | use Illuminate\Filesystem\Filesystem; |
||
| 6 | use NStack\Tests\LaravelTestCase; |
||
| 7 | use NStack\Translation\NStackLoader; |
||
| 8 | |||
| 9 | class NStackLoaderTest extends LaravelTestCase |
||
| 10 | { |
||
| 11 | public function testConstruct() |
||
| 12 | { |
||
| 13 | try { |
||
| 14 | $storage = new Filesystem(); |
||
| 15 | |||
| 16 | $nstack = $this->mockNStack(); |
||
| 17 | $nstackLoader = new NStackLoader($storage, '', $nstack); |
||
|
0 ignored issues
–
show
Unused Code
introduced
by
Loading history...
|
|||
| 18 | } catch (\Throwable $e) { |
||
| 19 | // TODO |
||
| 20 | |||
| 21 | } |
||
| 22 | |||
| 23 | $this->assertTrue(true); |
||
| 24 | } |
||
| 25 | } |