mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
- test skelet for browsing items
This commit is contained in:
53
tests/Feature/BrowseTest.php
Normal file
53
tests/Feature/BrowseTest.php
Normal file
@@ -0,0 +1,53 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Foundation\Testing\WithFaker;
|
||||
use Tests\TestCase;
|
||||
|
||||
class BrowseTest extends TestCase
|
||||
{
|
||||
use DatabaseMigrations;
|
||||
|
||||
public function it_get_navigator_tree()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_get_folder_files()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_get_searched_file()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_get_searched_folder()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_get_recent_files()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_get_trash()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_get_shared_files()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_get_participant_uploads()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user