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.php21
1 files changed, 3 insertions, 18 deletions
diff --git a/tests/unit/db/MapperFactoryTest.php b/tests/unit/db/MapperFactoryTest.php
index a83eca8ec..2f0e86be4 100644
--- a/tests/unit/db/MapperFactoryTest.php
+++ b/tests/unit/db/MapperFactoryTest.php
@@ -23,9 +23,6 @@ class MapperFactoryTest extends \PHPUnit_Framework_TestCase {
private $settings;
public function setUp() {
- $this->settings = $this->getMockBuilder('\OCP\IConfig')
- ->disableOriginalConstructor()
- ->getMock();
$this->db = $this->getMockBuilder('\OCA\News\Core\Db')
->disableOriginalConstructor()
->getMock();
@@ -33,33 +30,21 @@ class MapperFactoryTest extends \PHPUnit_Framework_TestCase {
public function testGetItemMapperSqlite() {
- $this->settings->expects($this->once())
- ->method('getSystemValue')
- ->with($this->equalTo('dbtype'))
- ->will($this->returnValue('sqlite'));
- $factory = new MapperFactory($this->settings, $this->db);
+ $factory = new MapperFactory('sqlite', $this->db);
$this->assertTrue($factory->getItemMapper() instanceof ItemMapper);
}
public function testGetItemMapperMysql() {
- $this->settings->expects($this->once())
- ->method('getSystemValue')
- ->with($this->equalTo('dbtype'))
- ->will($this->returnValue('mysql'));
- $factory = new MapperFactory($this->settings, $this->db);
+ $factory = new MapperFactory('mysql', $this->db);
$this->assertTrue($factory->getItemMapper() instanceof ItemMapper);
}
public function testGetItemMapperPostgres() {
- $this->settings->expects($this->once())
- ->method('getSystemValue')
- ->with($this->equalTo('dbtype'))
- ->will($this->returnValue('pgsql'));
- $factory = new MapperFactory($this->settings, $this->db);
+ $factory = new MapperFactory('pgsql', $this->db);
$this->assertTrue($factory->getItemMapper() instanceof \OCA\News\Db\Postgres\ItemMapper);
}