kill unused require of MapperTestUtility.php

This commit is contained in:
Thomas Müller 2014-07-17 16:35:00 +02:00
parent 55e6e27771
commit 9ee8c60b5f
1 changed files with 5 additions and 4 deletions

View File

@ -25,9 +25,7 @@
namespace OCP\AppFramework\Db;
use \OCP\IDb;
require_once __DIR__ . '/MapperTestUtility.php';
use Test\AppFramework\Db\MapperTestUtility;
/**
* @method integer getId()
@ -54,6 +52,9 @@ class ExampleMapper extends Mapper {
class MapperTest extends MapperTestUtility {
/**
* @var Mapper
*/
private $mapper;
public function setUp(){
@ -276,4 +277,4 @@ class MapperTest extends MapperTestUtility {
$result = $this->mapper->findAllEntities($sql);
$this->assertEquals(array($entity1, $entity2), $result);
}
}
}