Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/tests/phpunit/classes/mysqli_stmtTest.class.php

220 lines
5.5 KiB

<?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.'
);
}
}