Merge "[FileRepo] Use getHandler() is some places that should use it."
[lhc/web/wiklou.git] / tests / phpunit / includes / FormOptionsTest.php
index eab2def..d4e3c5e 100644 (file)
@@ -12,9 +12,9 @@
  * Test class for FormOptions methods.
  * Generated by PHPUnit on 2011-02-28 at 20:46:27.
  *
- * Copyright © 2011, Ashar Voultoiz
+ * Copyright © 2011, Antoine Musso
  *
- * @author Ashar Voultoiz
+ * @author Antoine Musso
  */
 class FormOptionsTest extends MediaWikiTestCase {
        /**
@@ -23,12 +23,13 @@ class FormOptionsTest extends MediaWikiTestCase {
        protected $object;
 
        /**
-        * Instanciates a FormOptions object to play with.       
+        * Instanciates a FormOptions object to play with.
         * FormOptions::add() is tested by the class FormOptionsInitializationTest
         * so we assume the function is well tested already an use it to create
         * the fixture.
         */
        protected function setUp() {
+               parent::setUp();
                $this->object = new FormOptions;
                $this->object->add( 'string1', 'string one' );
                $this->object->add( 'string2', 'string two' );
@@ -36,16 +37,6 @@ class FormOptionsTest extends MediaWikiTestCase {
                $this->object->add( 'intnull',  0, FormOptions::INTNULL );
        }
 
-       /**
-        * @todo Implement testDelete().
-        */
-       public function testDelete() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
        /** Helpers for testGuessType() */
        /* @{ */
        private function assertGuessBoolean( $data ) {
@@ -97,154 +88,4 @@ class FormOptionsTest extends MediaWikiTestCase {
        public function testGuessTypeOnNullThrowException() {
                $this->object->guessType( null ); 
        }
-
-       /**
-        * @todo Implement testValidateName().
-        */
-       public function testValidateName() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testSetValue().
-        */
-       public function testSetValue() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testGetValue().
-        */
-       public function testGetValue() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testReset().
-        */
-       public function testReset() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testConsumeValue().
-        */
-       public function testConsumeValue() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testConsumeValues().
-        */
-       public function testConsumeValues() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testValidateIntBounds().
-        */
-       public function testValidateIntBounds() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testGetUnconsumedValues().
-        */
-       public function testGetUnconsumedValues() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testGetChangedValues().
-        */
-       public function testGetChangedValues() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testGetAllValues().
-        */
-       public function testGetAllValues() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testFetchValuesFromRequest().
-        */
-       public function testFetchValuesFromRequest() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testOffsetExists().
-        */
-       public function testOffsetExists() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testOffsetGet().
-        */
-       public function testOffsetGet() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testOffsetSet().
-        */
-       public function testOffsetSet() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
-
-       /**
-        * @todo Implement testOffsetUnset().
-        */
-       public function testOffsetUnset() {
-               // Remove the following lines when you implement this test.
-               $this->markTestIncomplete(
-                 'This test has not been implemented yet.'
-               );
-       }
 }