summaryrefslogtreecommitdiffstats
path: root/tests/unit/db/MapperFactoryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/db/MapperFactoryTest.php')
-rw-r--r--tests/unit/db/MapperFactoryTest.php38
1 files changed, 19 insertions, 19 deletions
diff --git a/tests/unit/db/MapperFactoryTest.php b/tests/unit/db/MapperFactoryTest.php
index d96c9d857..3ebc0ce17 100644
--- a/tests/unit/db/MapperFactoryTest.php
+++ b/tests/unit/db/MapperFactoryTest.php
@@ -16,35 +16,35 @@ namespace OCA\News\Db;
class MapperFactoryTest extends \PHPUnit_Framework_TestCase {
- private $db;
- private $settings;
+ private $db;
+ private $settings;
- public function setUp() {
- $this->db = $this->getMockBuilder('\OCP\IDb')
- ->disableOriginalConstructor()
- ->getMock();
- }
+ public function setUp() {
+ $this->db = $this->getMockBuilder('\OCP\IDb')
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
- public function testGetItemMapperSqlite() {
- $factory = new MapperFactory('sqlite', $this->db);
+ public function testGetItemMapperSqlite() {
+ $factory = new MapperFactory('sqlite', $this->db);
- $this->assertTrue($factory->getItemMapper() instanceof ItemMapper);
- }
+ $this->assertTrue($factory->getItemMapper() instanceof ItemMapper);
+ }
- public function testGetItemMapperMysql() {
- $factory = new MapperFactory('mysql', $this->db);
+ public function testGetItemMapperMysql() {
+ $factory = new MapperFactory('mysql', $this->db);
- $this->assertTrue($factory->getItemMapper() instanceof ItemMapper);
- }
+ $this->assertTrue($factory->getItemMapper() instanceof ItemMapper);
+ }
- public function testGetItemMapperPostgres() {
- $factory = new MapperFactory('pgsql', $this->db);
+ public function testGetItemMapperPostgres() {
+ $factory = new MapperFactory('pgsql', $this->db);
- $this->assertTrue($factory->getItemMapper() instanceof \OCA\News\Db\Postgres\ItemMapper);
- }
+ $this->assertTrue($factory->getItemMapper() instanceof \OCA\News\Db\Postgres\ItemMapper);
+ }
} \ No newline at end of file