mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-21 09:12:14 +00:00
- test skelet for share
This commit is contained in:
48
tests/Feature/ShareTest.php
Normal file
48
tests/Feature/ShareTest.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature;
|
||||
|
||||
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
||||
use Illuminate\Foundation\Testing\RefreshDatabase;
|
||||
use Illuminate\Foundation\Testing\WithFaker;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ShareTest extends TestCase
|
||||
{
|
||||
use DatabaseMigrations;
|
||||
|
||||
public function it_share_folder_without_password()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_share_folder_with_password()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_share_folder_with_expiration_time()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_share_folder_for_single_email()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_share_folder_for_multiple_email()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_cancel_single_sharing()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public function it_cancel_multiple_sharing()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user