. **/ require_once dirname(__FILE__).'/../include/CTest.php'; class function_DBclose extends CTest { public function test_DBclose() { DBconnect($error); return DBclose(); } public function test_DBcloseOfClosedDatabase() { DBconnect($error); DBclose(); $this->assertFalse(DBclose(), 'Chuck Norris: DBclose() must return False if the database is already closed'); } }