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

244 lines
6.2 KiB

<?php
/**
* Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
*/
class LocaleTest extends PHPUnit_Framework_TestCase
{
/**
* @var Locale
*/
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 Locale;
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown()
{
}
/**
* @covers Locale::getDefault
* @todo Implement testGetDefault().
*/
public function testGetDefault()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::setDefault
* @todo Implement testSetDefault().
*/
public function testSetDefault()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getPrimaryLanguage
* @todo Implement testGetPrimaryLanguage().
*/
public function testGetPrimaryLanguage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getScript
* @todo Implement testGetScript().
*/
public function testGetScript()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getRegion
* @todo Implement testGetRegion().
*/
public function testGetRegion()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getKeywords
* @todo Implement testGetKeywords().
*/
public function testGetKeywords()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getDisplayScript
* @todo Implement testGetDisplayScript().
*/
public function testGetDisplayScript()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getDisplayRegion
* @todo Implement testGetDisplayRegion().
*/
public function testGetDisplayRegion()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getDisplayName
* @todo Implement testGetDisplayName().
*/
public function testGetDisplayName()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getDisplayLanguage
* @todo Implement testGetDisplayLanguage().
*/
public function testGetDisplayLanguage()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getDisplayVariant
* @todo Implement testGetDisplayVariant().
*/
public function testGetDisplayVariant()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::composeLocale
* @todo Implement testComposeLocale().
*/
public function testComposeLocale()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::parseLocale
* @todo Implement testParseLocale().
*/
public function testParseLocale()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::getAllVariants
* @todo Implement testGetAllVariants().
*/
public function testGetAllVariants()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::filterMatches
* @todo Implement testFilterMatches().
*/
public function testFilterMatches()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::lookup
* @todo Implement testLookup().
*/
public function testLookup()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::canonicalize
* @todo Implement testCanonicalize().
*/
public function testCanonicalize()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @covers Locale::acceptFromHttp
* @todo Implement testAcceptFromHttp().
*/
public function testAcceptFromHttp()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}