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:
authorThomas Steur <thomas.steur@gmail.com>2013-11-07 09:21:28 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-11-07 09:21:28 +0400
commit793c3f88364447e1abf10c935ea5d3958610348d (patch)
treec214f5d8cfc2a78c68d54405b68ac7ce294aa45b /core/Console.php
parentbce736feebb861f953f6083869b5d9b2bc214176 (diff)
refs #1673 added a simple test to example plugin, added test generator
Diffstat (limited to 'core/Console.php')
-rw-r--r--core/Console.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/Console.php b/core/Console.php
index 08f3186a9d..8dc924f01d 100644
--- a/core/Console.php
+++ b/core/Console.php
@@ -28,6 +28,7 @@ use Piwik\Plugins\CoreConsole\Translations\PluginsWithTranslations;
use Piwik\Plugins\CoreConsole\Translations\SetTranslations;
use Piwik\Plugins\CoreConsole\Translations\Update;
use Piwik\Plugins\CoreConsole\WatchLog;
+use Piwik\Plugins\CoreConsole\GenerateTest;
use Symfony\Component\Console\Application;
class Console
@@ -42,6 +43,7 @@ class Console
$console->add(new GenerateSettings());
$console->add(new GenerateController());
$console->add(new GenerateVisualizationPlugin());
+ $console->add(new GenerateTest());
$console->add(new WatchLog());
$console->add(new GitPull());
$console->add(new GitCommit());