object = new SQLite3; } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown() { } /** * @covers SQLite3::open * @todo Implement testOpen(). */ public function testOpen() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::close * @todo Implement testClose(). */ public function testClose() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::exec * @todo Implement testExec(). */ public function testExec() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::version * @todo Implement testVersion(). */ public function testVersion() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::lastInsertRowID * @todo Implement testLastInsertRowID(). */ public function testLastInsertRowID() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::lastErrorCode * @todo Implement testLastErrorCode(). */ public function testLastErrorCode() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::lastErrorMsg * @todo Implement testLastErrorMsg(). */ public function testLastErrorMsg() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::busyTimeout * @todo Implement testBusyTimeout(). */ public function testBusyTimeout() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::loadExtension * @todo Implement testLoadExtension(). */ public function testLoadExtension() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::changes * @todo Implement testChanges(). */ public function testChanges() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::escapeString * @todo Implement testEscapeString(). */ public function testEscapeString() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::prepare * @todo Implement testPrepare(). */ public function testPrepare() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::query * @todo Implement testQuery(). */ public function testQuery() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::querySingle * @todo Implement testQuerySingle(). */ public function testQuerySingle() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::createFunction * @todo Implement testCreateFunction(). */ public function testCreateFunction() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::createAggregate * @todo Implement testCreateAggregate(). */ public function testCreateAggregate() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::createCollation * @todo Implement testCreateCollation(). */ public function testCreateCollation() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::openBlob * @todo Implement testOpenBlob(). */ public function testOpenBlob() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3::enableExceptions * @todo Implement testEnableExceptions(). */ public function testEnableExceptions() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } }