123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <?php
- class mysqli_resultTest extends PHPUnit_Framework_TestCase
- {
-
- protected $object;
-
- protected function setUp()
- {
- $this->object = new mysqli_result;
- }
-
- protected function tearDown()
- {
- }
-
- public function testClose()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFree()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testData_seek()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFetch_field()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFetch_fields()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFetch_field_direct()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFetch_array()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFetch_assoc()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFetch_object()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFetch_row()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testField_seek()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
-
- public function testFree_result()
- {
-
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|