SemanticScuttle/tests/FactoryTest.php
2011-04-12 08:47:44 +02:00

13 lines
211 B
PHP

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