diff options
-rw-r--r-- | apps/files_sharing/tests/unsharechildren.php (renamed from apps/files_sharing/tests/proxy.php) | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/files_sharing/tests/proxy.php b/apps/files_sharing/tests/unsharechildren.php index cfdc7741733..574f1dd08d8 100644 --- a/apps/files_sharing/tests/proxy.php +++ b/apps/files_sharing/tests/unsharechildren.php @@ -22,13 +22,13 @@ * */ +namespace OCA\Files_sharing\Tests; use OCA\Files\Share; -/** - * Class Test_Files_Sharing_Proxy - */ -class Test_Files_Sharing_Proxy extends OCA\Files_sharing\Tests\TestCase { +class UnshareChildren extends TestCase { + + protected $subsubfolder; const TEST_FOLDER_NAME = '/folder_share_api_test'; @@ -38,8 +38,8 @@ class Test_Files_Sharing_Proxy extends OCA\Files_sharing\Tests\TestCase { parent::setUp(); // load proxies - OC::$CLASSPATH['OCA\Files\Share\Proxy'] = 'files_sharing/lib/proxy.php'; - OC_FileProxy::register(new OCA\Files\Share\Proxy()); + \OC::$CLASSPATH['OCA\Files\Share\Proxy'] = 'files_sharing/lib/proxy.php'; + \OC_FileProxy::register(new \OCA\Files\Share\Proxy()); $this->folder = self::TEST_FOLDER_NAME; $this->subfolder = '/subfolder_share_api_test'; @@ -66,7 +66,7 @@ class Test_Files_Sharing_Proxy extends OCA\Files_sharing\Tests\TestCase { /** * @medium */ - function testpreUnlink() { + function testUnshareChildren() { $fileInfo2 = \OC\Files\Filesystem::getFileInfo($this->folder); |