diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/ocs/MapStatusCodeTest.php (renamed from tests/ocs/response.php) | 10 | ||||
-rw-r--r-- | tests/lib/ocs/ProviderTest.php (renamed from tests/ocs-provider/provider.php) | 8 |
2 files changed, 11 insertions, 7 deletions
diff --git a/tests/ocs/response.php b/tests/lib/ocs/MapStatusCodeTest.php index 919915a7c78..27ebfe209f7 100644 --- a/tests/ocs/response.php +++ b/tests/lib/ocs/MapStatusCodeTest.php @@ -1,6 +1,4 @@ <?php -use OCP\AppFramework\Http; - /** * @author Thomas Müller <thomas.mueller@tmit.eu> * @@ -21,13 +19,17 @@ use OCP\AppFramework\Http; * */ -class OcsResponseTest extends \Test\TestCase { +namespace Test\OCS; + +use OCP\AppFramework\Http; + +class MapStatusCodeTest extends \Test\TestCase { /** * @dataProvider providesStatusCodes */ public function testStatusCodeMapper($expected, $sc) { - $result = OC_API::mapStatusCodes($sc); + $result = \OC_API::mapStatusCodes($sc); $this->assertEquals($expected, $result); } diff --git a/tests/ocs-provider/provider.php b/tests/lib/ocs/ProviderTest.php index 17f557b16b5..399fd3933d9 100644 --- a/tests/ocs-provider/provider.php +++ b/tests/lib/ocs/ProviderTest.php @@ -19,7 +19,11 @@ * */ -class OcsProviderTest extends \Test\TestCase { +namespace Test\OCS; + +use OC\OCS\Provider; + +class ProviderTest extends \Test\TestCase { /** @var \OCP\IRequest */ private $request; /** @var \OCP\App\IAppManager */ @@ -30,8 +34,6 @@ class OcsProviderTest extends \Test\TestCase { public function setUp() { parent::setUp(); - require_once '../ocs-provider/provider.php'; - $this->request = $this->getMockBuilder('\\OCP\\IRequest')->getMock(); $this->appManager = $this->getMockBuilder('\\OCP\\App\\IAppManager')->getMock(); $this->ocsProvider = new Provider('ocs_provider', $this->request, $this->appManager); |