123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:55.
- */
- class PDOStatementTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var PDOStatement
- */
- protected $object;
- /**
- * Sets up the fixture, for example, opens a network connection.
- * This method is called before a test is executed.
- */
- protected function setUp()
- {
- $this->object = new PDOStatement;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers PDOStatement::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 PDOStatement::fetch
- * @todo Implement testFetch().
- */
- public function testFetch()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::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 PDOStatement::bindColumn
- * @todo Implement testBindColumn().
- */
- public function testBindColumn()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::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 PDOStatement::rowCount
- * @todo Implement testRowCount().
- */
- public function testRowCount()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::fetchColumn
- * @todo Implement testFetchColumn().
- */
- public function testFetchColumn()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::fetchAll
- * @todo Implement testFetchAll().
- */
- public function testFetchAll()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::fetchObject
- * @todo Implement testFetchObject().
- */
- public function testFetchObject()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::errorCode
- * @todo Implement testErrorCode().
- */
- public function testErrorCode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::errorInfo
- * @todo Implement testErrorInfo().
- */
- public function testErrorInfo()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::setAttribute
- * @todo Implement testSetAttribute().
- */
- public function testSetAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::getAttribute
- * @todo Implement testGetAttribute().
- */
- public function testGetAttribute()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::columnCount
- * @todo Implement testColumnCount().
- */
- public function testColumnCount()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::getColumnMeta
- * @todo Implement testGetColumnMeta().
- */
- public function testGetColumnMeta()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::setFetchMode
- * @todo Implement testSetFetchMode().
- */
- public function testSetFetchMode()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::nextRowset
- * @todo Implement testNextRowset().
- */
- public function testNextRowset()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::closeCursor
- * @todo Implement testCloseCursor().
- */
- public function testCloseCursor()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::debugDumpParams
- * @todo Implement testDebugDumpParams().
- */
- public function testDebugDumpParams()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::__wakeup
- * @todo Implement test__wakeup().
- */
- public function test__wakeup()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers PDOStatement::__sleep
- * @todo Implement test__sleep().
- */
- public function test__sleep()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|