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