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

256 lines
6.4 KiB

<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:58.
*/
class SQLite3Test extends PHPUnit_Framework_TestCase
{
/**
* @var SQLite3
*/
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 SQLite3;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers SQLite3::open
* @todo Implement testOpen().
*/
public function testOpen()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::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 SQLite3::exec
* @todo Implement testExec().
*/
public function testExec()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::version
* @todo Implement testVersion().
*/
public function testVersion()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::lastInsertRowID
* @todo Implement testLastInsertRowID().
*/
public function testLastInsertRowID()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::lastErrorCode
* @todo Implement testLastErrorCode().
*/
public function testLastErrorCode()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::lastErrorMsg
* @todo Implement testLastErrorMsg().
*/
public function testLastErrorMsg()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::busyTimeout
* @todo Implement testBusyTimeout().
*/
public function testBusyTimeout()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::loadExtension
* @todo Implement testLoadExtension().
*/
public function testLoadExtension()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::changes
* @todo Implement testChanges().
*/
public function testChanges()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::escapeString
* @todo Implement testEscapeString().
*/
public function testEscapeString()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::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 SQLite3::query
* @todo Implement testQuery().
*/
public function testQuery()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::querySingle
* @todo Implement testQuerySingle().
*/
public function testQuerySingle()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::createFunction
* @todo Implement testCreateFunction().
*/
public function testCreateFunction()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::createAggregate
* @todo Implement testCreateAggregate().
*/
public function testCreateAggregate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::createCollation
* @todo Implement testCreateCollation().
*/
public function testCreateCollation()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::openBlob
* @todo Implement testOpenBlob().
*/
public function testOpenBlob()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers SQLite3::enableExceptions
* @todo Implement testEnableExceptions().
*/
public function testEnableExceptions()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}