Don't end the abstract class name with Test.php

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2017-04-27 09:49:37 +02:00
parent 211a76eff3
commit 6fb7d9a865
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
4 changed files with 4 additions and 4 deletions

View File

@ -31,7 +31,7 @@ use OCP\AppFramework\Http;
*
* @package OCA\DAV\Tests\unit\Connector\Sabre\RequestTest
*/
class DeleteTest extends RequestTest {
class DeleteTest extends RequestTestCase {
public function testBasicUpload() {
$user = $this->getUniqueID();
$view = $this->setupUser($user, 'pass');

View File

@ -34,7 +34,7 @@ use OCP\Lock\ILockingProvider;
*
* @package OCA\DAV\Tests\unit\Connector\Sabre\RequestTest
*/
class DownloadTest extends RequestTest {
class DownloadTest extends RequestTestCase {
public function testDownload() {
$user = $this->getUniqueID();
$view = $this->setupUser($user, 'pass');

View File

@ -34,7 +34,7 @@ use Test\TestCase;
use Test\Traits\MountProviderTrait;
use Test\Traits\UserTrait;
abstract class RequestTest extends TestCase {
abstract class RequestTestCase extends TestCase {
use UserTrait;
use MountProviderTrait;

View File

@ -35,7 +35,7 @@ use OCP\Lock\ILockingProvider;
*
* @package OCA\DAV\Tests\unit\Connector\Sabre\RequestTest
*/
class UploadTest extends RequestTest {
class UploadTest extends RequestTestCase {
public function testBasicUpload() {
$user = $this->getUniqueID();
$view = $this->setupUser($user, 'pass');