mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-22 17:32:14 +00:00
90 lines
986 B
PHP
90 lines
986 B
PHP
<?php
|
|
|
|
|
|
namespace Tests\Domain\Teams;
|
|
|
|
|
|
use Tests\TestCase;
|
|
|
|
class TeamsTest extends TestCase
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function it_create_team_folder()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function it_convert_team_folder()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function it_add_member_into_team_folder()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function member_accept_team_folder_invite()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function member_reject_team_folder_invite()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function it_remove_member_from_team_folder()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function it_dissolve_team_folder()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function it_move_items_into_team_folder()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function it_get_all_team_folders()
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function it_get_team_folders_shared_with_another_user()
|
|
{
|
|
|
|
}
|
|
} |