diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-20 11:27:11 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-11-30 10:55:06 +0100 |
commit | 757aa45db7b884c28c118e28b7cd517059c61a32 (patch) | |
tree | 815796cfa49eea7d0e0827f222fc46b584cbb8a4 /tests/lib/files/storage | |
parent | e265e982bf9f2572ef24d84dd777f48fff8993b4 (diff) | |
download | nextcloud-server-757aa45db7b884c28c118e28b7cd517059c61a32.tar.gz nextcloud-server-757aa45db7b884c28c118e28b7cd517059c61a32.zip |
Adding more DB groups to test suits
Adding more DB groups to test suits
Diffstat (limited to 'tests/lib/files/storage')
-rw-r--r-- | tests/lib/files/storage/commontest.php | 7 | ||||
-rw-r--r-- | tests/lib/files/storage/copydirectory.php | 7 | ||||
-rw-r--r-- | tests/lib/files/storage/home.php | 7 | ||||
-rw-r--r-- | tests/lib/files/storage/local.php | 7 | ||||
-rw-r--r-- | tests/lib/files/storage/wrapper/quota.php | 7 |
5 files changed, 35 insertions, 0 deletions
diff --git a/tests/lib/files/storage/commontest.php b/tests/lib/files/storage/commontest.php index 2b70dc8713e..bbe6f2a73e2 100644 --- a/tests/lib/files/storage/commontest.php +++ b/tests/lib/files/storage/commontest.php @@ -22,6 +22,13 @@ namespace Test\Files\Storage; +/** + * Class CommonTest + * + * @group DB + * + * @package Test\Files\Storage + */ class CommonTest extends Storage { /** * @var string tmpDir diff --git a/tests/lib/files/storage/copydirectory.php b/tests/lib/files/storage/copydirectory.php index 3338747f49b..bc066268cda 100644 --- a/tests/lib/files/storage/copydirectory.php +++ b/tests/lib/files/storage/copydirectory.php @@ -36,6 +36,13 @@ class CopyDirectoryStorage extends StorageNoRecursiveCopy { use \OC\Files\Storage\PolyFill\CopyDirectory; } +/** + * Class CopyDirectory + * + * @group DB + * + * @package Test\Files\Storage + */ class CopyDirectory extends Storage { protected function setUp() { diff --git a/tests/lib/files/storage/home.php b/tests/lib/files/storage/home.php index b0670a22892..a51912ca1b2 100644 --- a/tests/lib/files/storage/home.php +++ b/tests/lib/files/storage/home.php @@ -47,6 +47,13 @@ class DummyUser extends User { } } +/** + * Class Home + * + * @group DB + * + * @package Test\Files\Storage + */ class Home extends Storage { /** * @var string tmpDir diff --git a/tests/lib/files/storage/local.php b/tests/lib/files/storage/local.php index d2b27117c3b..36267dc6605 100644 --- a/tests/lib/files/storage/local.php +++ b/tests/lib/files/storage/local.php @@ -22,6 +22,13 @@ namespace Test\Files\Storage; +/** + * Class Local + * + * @group DB + * + * @package Test\Files\Storage + */ class Local extends Storage { /** * @var string tmpDir diff --git a/tests/lib/files/storage/wrapper/quota.php b/tests/lib/files/storage/wrapper/quota.php index 441f3a39d32..b0a06b0d898 100644 --- a/tests/lib/files/storage/wrapper/quota.php +++ b/tests/lib/files/storage/wrapper/quota.php @@ -11,6 +11,13 @@ namespace Test\Files\Storage\Wrapper; //ensure the constants are loaded \OC::$loader->load('\OC\Files\Filesystem'); +/** + * Class Quota + * + * @group DB + * + * @package Test\Files\Storage\Wrapper + */ class Quota extends \Test\Files\Storage\Storage { /** * @var string tmpDir |