Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-12-30 08:11:25 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-01-05 04:03:58 +0300
commit76631197ff467bf1209dc921dfecde8dec40a9ef (patch)
treeb5cf8b76b27d9013896ca93c5ca9d5517a6d91ad /plugins/TestRunner/Controller.php
parent9a219af33f31dfa5970aedc6644dc683b292ad72 (diff)
Faster bootstrap for PHPUnit tests
Diffstat (limited to 'plugins/TestRunner/Controller.php')
-rw-r--r--plugins/TestRunner/Controller.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/TestRunner/Controller.php b/plugins/TestRunner/Controller.php
new file mode 100644
index 0000000000..c3f75fbe10
--- /dev/null
+++ b/plugins/TestRunner/Controller.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * Piwik - free/libre analytics platform
+ *
+ * @link http://piwik.org
+ * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
+ */
+
+namespace Piwik\Plugins\TestRunner;
+
+class Controller extends \Piwik\Plugin\Controller
+{
+ public function check()
+ {
+ return 'OK';
+ }
+}