summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/media/FakeDimensionFile.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/includes/media/FakeDimensionFile.php')
-rw-r--r--tests/phpunit/includes/media/FakeDimensionFile.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/phpunit/includes/media/FakeDimensionFile.php b/tests/phpunit/includes/media/FakeDimensionFile.php
deleted file mode 100644
index 7926000b..00000000
--- a/tests/phpunit/includes/media/FakeDimensionFile.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-class FakeDimensionFile extends File {
- public $mustRender = false;
-
- public function __construct( $dimensions ) {
- parent::__construct( Title::makeTitle( NS_FILE, 'Test' ),
- new NullRepo( null ) );
-
- $this->dimensions = $dimensions;
- }
-
- public function getWidth( $page = 1 ) {
- return $this->dimensions[0];
- }
-
- public function getHeight( $page = 1 ) {
- return $this->dimensions[1];
- }
-
- public function mustRender() {
- return $this->mustRender;
- }
-
- public function getPath() {
- return '';
- }
-} \ No newline at end of file