13 lines
211 B
PHP
13 lines
211 B
PHP
|
<?php
|
||
|
|
||
|
class FactoryTest extends TestBase
|
||
|
{
|
||
|
public function testGetDb()
|
||
|
{
|
||
|
$this->assertInstanceOf(
|
||
|
'sql_db',
|
||
|
SemanticScuttle_Service_Factory::getDb()
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
?>
|