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

112 lines
2.8 KiB

<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:57.
*/
class TransliteratorTest extends PHPUnit_Framework_TestCase
{
/**
* @var Transliterator
*/
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 Transliterator;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers Transliterator::create
* @todo Implement testCreate().
*/
public function testCreate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Transliterator::createFromRules
* @todo Implement testCreateFromRules().
*/
public function testCreateFromRules()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Transliterator::createInverse
* @todo Implement testCreateInverse().
*/
public function testCreateInverse()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Transliterator::listIDs
* @todo Implement testListIDs().
*/
public function testListIDs()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Transliterator::transliterate
* @todo Implement testTransliterate().
*/
public function testTransliterate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Transliterator::getErrorCode
* @todo Implement testGetErrorCode().
*/
public function testGetErrorCode()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Transliterator::getErrorMessage
* @todo Implement testGetErrorMessage().
*/
public function testGetErrorMessage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}