123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:58.
- */
- class mysqli_stmtTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var mysqli_stmt
- */
- 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 mysqli_stmt;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers mysqli_stmt::attr_get
- * @todo Implement testAttr_get().
- */
- public function testAttr_get()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::attr_set
- * @todo Implement testAttr_set().
- */
- public function testAttr_set()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::bind_param
- * @todo Implement testBind_param().
- */
- public function testBind_param()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::bind_result
- * @todo Implement testBind_result().
- */
- public function testBind_result()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::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 mysqli_stmt::data_seek
- * @todo Implement testData_seek().
- */
- public function testData_seek()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::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 mysqli_stmt::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 mysqli_stmt::get_warnings
- * @todo Implement testGet_warnings().
- */
- public function testGet_warnings()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::result_metadata
- * @todo Implement testResult_metadata().
- */
- public function testResult_metadata()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::num_rows
- * @todo Implement testNum_rows().
- */
- public function testNum_rows()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::send_long_data
- * @todo Implement testSend_long_data().
- */
- public function testSend_long_data()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::free_result
- * @todo Implement testFree_result().
- */
- public function testFree_result()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers mysqli_stmt::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 mysqli_stmt::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 mysqli_stmt::store_result
- * @todo Implement testStore_result().
- */
- public function testStore_result()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|