Merge "Add 3D filetype for STL files"
[lhc/web/wiklou.git] / tests / phpunit / mocks / MockChangesListFilter.php
1 <?php
2
3 class MockChangesListFilter extends ChangesListFilter {
4 public function displaysOnUnstructuredUi() {
5 throw new MWException(
6 'Not implemented: If the test relies on this, put it one of the ' .
7 'subclasses\' tests (e.g. ChangesListBooleanFilterTest) ' .
8 'instead of testing the abstract class'
9 );
10 }
11
12 public function isSelected( FormOptions $opts ) {
13 return false;
14 }
15 }