object = new SQLite3Stmt; } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown() { } /** * @covers SQLite3Stmt::paramCount * @todo Implement testParamCount(). */ public function testParamCount() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3Stmt::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 SQLite3Stmt::reset * @todo Implement testReset(). */ public function testReset() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3Stmt::clear * @todo Implement testClear(). */ public function testClear() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3Stmt::execute * @todo Implement testExecute(). */ public function testExecute() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3Stmt::bindParam * @todo Implement testBindParam(). */ public function testBindParam() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3Stmt::bindValue * @todo Implement testBindValue(). */ public function testBindValue() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } /** * @covers SQLite3Stmt::readOnly * @todo Implement testReadOnly(). */ public function testReadOnly() { // Remove the following lines when you implement this test. $this->markTestIncomplete( 'This test has not been implemented yet.' ); } }