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.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Unit/Db/MapperFactoryTest.php b/tests/Unit/Db/MapperFactoryTest.php
index 697a62bee..97680e20b 100644
--- a/tests/Unit/Db/MapperFactoryTest.php
+++ b/tests/Unit/Db/MapperFactoryTest.php
@@ -29,26 +29,26 @@ class MapperFactoryTest extends TestCase
private $db;
private $settings;
- public function setUp()
+ public function setUp(): void
{
$this->db = $this->getMockBuilder(IDBConnection::class)
->disableOriginalConstructor()
->getMock();
}
- public function testGetItemMapperSqlite()
+ public function testGetItemMapperSqlite()
{
$factory = new MapperFactory($this->db, 'sqlite', new Time());
$this->assertTrue($factory->build() instanceof ItemMapper);
}
- public function testGetItemMapperPostgres()
+ public function testGetItemMapperPostgres()
{
$factory = new MapperFactory($this->db, 'pgsql', new Time());
$this->assertTrue($factory->build() instanceof ItemMapper);
}
- public function testGetItemMapperMysql()
+ public function testGetItemMapperMysql()
{
$factory = new MapperFactory($this->db, 'mysql', new Time());
$this->assertTrue($factory->build() instanceof MysqlMapper);