diff options
Diffstat (limited to 'Echo/tests/phpunit/mapper/EventMapperTest.php')
-rw-r--r-- | Echo/tests/phpunit/mapper/EventMapperTest.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Echo/tests/phpunit/mapper/EventMapperTest.php b/Echo/tests/phpunit/mapper/EventMapperTest.php index e9528ca9..e81e183d 100644 --- a/Echo/tests/phpunit/mapper/EventMapperTest.php +++ b/Echo/tests/phpunit/mapper/EventMapperTest.php @@ -1,5 +1,8 @@ <?php +/** + * @covers EchoEventMapper + */ class EchoEventMapperTest extends MediaWikiTestCase { public function provideDataTestInsert() { @@ -99,7 +102,8 @@ class EchoEventMapperTest extends MediaWikiTestCase { } /** - * Mock object of DatabaseMysql ( DatabaseBase ) + * Returns a mock database object + * @return \Wikimedia\Rdbms\IDatabase */ protected function mockDb( array $dbResult ) { $dbResult += [ @@ -108,7 +112,7 @@ class EchoEventMapperTest extends MediaWikiTestCase { 'select' => '', 'selectRow' => '' ]; - $db = $this->getMockBuilder( 'DatabaseMysql' ) + $db = $this->getMockBuilder( 'DatabaseMysqli' ) ->disableOriginalConstructor() ->getMock(); $db->expects( $this->any() ) |