123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- <?php
- /**
- * Generated by PHPUnit_SkeletonGenerator on 2013-01-07 at 09:22:56.
- */
- class CollatorTest extends PHPUnit_Framework_TestCase
- {
- /**
- * @var Collator
- */
- 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 Collator;
- }
- /**
- * Tears down the fixture, for example, closes a network connection.
- * This method is called after a test is executed.
- */
- protected function tearDown()
- {
- }
- /**
- * @covers Collator::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 Collator::compare
- * @todo Implement testCompare().
- */
- public function testCompare()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Collator::sort
- * @todo Implement testSort().
- */
- public function testSort()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Collator::sortWithSortKeys
- * @todo Implement testSortWithSortKeys().
- */
- public function testSortWithSortKeys()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Collator::asort
- * @todo Implement testAsort().
- */
- public function testAsort()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Collator::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 Collator::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 Collator::getStrength
- * @todo Implement testGetStrength().
- */
- public function testGetStrength()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Collator::setStrength
- * @todo Implement testSetStrength().
- */
- public function testSetStrength()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Collator::getLocale
- * @todo Implement testGetLocale().
- */
- public function testGetLocale()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- /**
- * @covers Collator::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 Collator::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.'
- );
- }
- /**
- * @covers Collator::getSortKey
- * @todo Implement testGetSortKey().
- */
- public function testGetSortKey()
- {
- // Remove the following lines when you implement this test.
- $this->markTestIncomplete(
- 'This test has not been implemented yet.'
- );
- }
- }
|