summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/api/MockApi.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/includes/api/MockApi.php')
-rw-r--r--tests/phpunit/includes/api/MockApi.php20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/phpunit/includes/api/MockApi.php b/tests/phpunit/includes/api/MockApi.php
new file mode 100644
index 00000000..d94aa2cd
--- /dev/null
+++ b/tests/phpunit/includes/api/MockApi.php
@@ -0,0 +1,20 @@
+<?php
+
+class MockApi extends ApiBase {
+ public function execute() {
+ }
+
+ public function getVersion() {
+ }
+
+ public function __construct() {
+ }
+
+ public function getAllowedParams() {
+ return array(
+ 'filename' => null,
+ 'enablechunks' => false,
+ 'sessionkey' => null,
+ );
+ }
+}