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/PDOStatementTest.class.php

280 lines
7.1 KiB

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