diff options
Diffstat (limited to 'tests/FactoryTest.php')
-rw-r--r-- | tests/FactoryTest.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/FactoryTest.php b/tests/FactoryTest.php new file mode 100644 index 0000000..980e92e --- /dev/null +++ b/tests/FactoryTest.php @@ -0,0 +1,13 @@ +<?php + +class FactoryTest extends TestBase +{ + public function testGetDb() + { + $this->assertInstanceOf( + 'sql_db', + SemanticScuttle_Service_Factory::getDb() + ); + } +} +?>
\ No newline at end of file |