Merge "jquery.textSelection: Remove code supporting IE 6 selection APIs"
[lhc/web/wiklou.git] / tests / phpunit / mocks / MockChangesListFilter.php
index cbf306e..79232ad 100644 (file)
@@ -1,11 +1,15 @@
 <?php
 
 class MockChangesListFilter extends ChangesListFilter {
-       public function displaysOnUnstructuredUi( ChangesListSpecialPage $specialPage ) {
+       public function displaysOnUnstructuredUi() {
                throw new MWException(
                        'Not implemented: If the test relies on this, put it one of the ' .
                        'subclasses\' tests (e.g. ChangesListBooleanFilterTest) ' .
                        'instead of testing the abstract class'
                );
        }
+
+       public function isSelected( FormOptions $opts ) {
+               return false;
+       }
 }