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.php59
1 files changed, 0 insertions, 59 deletions
diff --git a/tests/Unit/Db/MapperFactoryTest.php b/tests/Unit/Db/MapperFactoryTest.php
deleted file mode 100644
index 1c4e2f4b6..000000000
--- a/tests/Unit/Db/MapperFactoryTest.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-/**
- * Nextcloud - News
- *
- * This file is licensed under the Affero General Public License version 3 or
- * later. See the COPYING file.
- *
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright 2012 Alessandro Cosentino
- * @copyright 2012-2014 Bernhard Posselt
- */
-
-namespace OCA\News\Tests\Unit\Db;
-
-use OCA\News\Db\ItemMapper;
-use OCA\News\Db\MapperFactory;
-use OCA\News\Utility\Time;
-use PHPUnit\Framework\TestCase;
-
-use OCP\IDBConnection;
-
-use OCA\News\Db\Mysql\ItemMapper as MysqlMapper;
-
-
-class MapperFactoryTest extends TestCase
-{
-
- /**
- * @var \PHPUnit\Framework\MockObject\MockObject|IDBConnection
- */
- private $db;
-
- public function setUp(): void
- {
- $this->db = $this->getMockBuilder(IDBConnection::class)
- ->disableOriginalConstructor()
- ->getMock();
- }
-
- public function testGetItemMapperSqlite()
- {
- $factory = new MapperFactory($this->db, 'sqlite', new Time());
- $this->assertTrue($factory->build() instanceof ItemMapper);
- }
-
- public function testGetItemMapperPostgres()
- {
- $factory = new MapperFactory($this->db, 'pgsql', new Time());
- $this->assertTrue($factory->build() instanceof ItemMapper);
- }
-
- public function testGetItemMapperMysql()
- {
- $factory = new MapperFactory($this->db, 'mysql', new Time());
- $this->assertTrue($factory->build() instanceof MysqlMapper);
- }
-
-}