51 lines
580 B
PHP
51 lines
580 B
PHP
<?php
|
|
|
|
use OCA\Files_Sharing\API\Sharees;
|
|
use OCA\Files_sharing\Tests\TestCase;
|
|
|
|
class ShareesTest extends TestCase {
|
|
|
|
/**
|
|
* Properly mock all injected elements
|
|
*/
|
|
protected function setup() {
|
|
|
|
}
|
|
|
|
public function testArguments() {
|
|
|
|
}
|
|
|
|
public function testsOnlyUsers() {
|
|
|
|
}
|
|
|
|
public function testOnlyGroups() {
|
|
|
|
}
|
|
|
|
public function testRemoteAddress() {
|
|
|
|
}
|
|
|
|
public function testRemoteFromContacts() {
|
|
|
|
}
|
|
|
|
public function testAll() {
|
|
|
|
}
|
|
|
|
public function testSorting() {
|
|
|
|
}
|
|
|
|
public function testPagination() {
|
|
|
|
}
|
|
|
|
public function testShareWithinGroup() {
|
|
|
|
}
|
|
}
|