SemanticScuttle/tests/FactoryTest.php

13 lines
211 B
PHP
Raw Normal View History

2011-04-12 06:47:44 +00:00
<?php
class FactoryTest extends TestBase
{
public function testGetDb()
{
$this->assertInstanceOf(
'sql_db',
SemanticScuttle_Service_Factory::getDb()
);
}
}
?>