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>2015-02-01 06:34:06 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-02-01 06:34:06 +0300
commit7cc4890b8b46d83337af74f4586e2d0ca83dae70 (patch)
tree0d0ebd3d33c272c366211c126d020411ff0971bc /plugins/CoreConsole
parent77acc2cd4eebb14260384016a04089f80cdf032c (diff)
highlight the example commands to run the tests, otherwise one would not see them
Diffstat (limited to 'plugins/CoreConsole')
-rw-r--r--plugins/CoreConsole/Commands/GenerateTest.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CoreConsole/Commands/GenerateTest.php b/plugins/CoreConsole/Commands/GenerateTest.php
index fa2d391bf8..c2b31b6fe5 100644
--- a/plugins/CoreConsole/Commands/GenerateTest.php
+++ b/plugins/CoreConsole/Commands/GenerateTest.php
@@ -51,12 +51,12 @@ class GenerateTest extends GeneratePluginBase
if (strtolower($testType) === 'ui') {
$messages[] = 'To run this test execute the command: ';
- $messages[] = sprintf('./console tests:run-ui %s', $testName);
+ $messages[] = '<comment>' . sprintf('./console tests:run-ui %s', $testName) . '</comment>';
} else {
$messages[] = 'To run all your plugin tests, execute the command: ';
- $messages[] = sprintf('./console tests:run %s', $pluginName);
+ $messages[] = '<comment>' . sprintf('./console tests:run %s', $pluginName) . '</comment>';
$messages[] = 'To run only this test: ';
- $messages[] = sprintf('./console tests:run %s', $testName);
+ $messages[] = '<comment>' . sprintf('./console tests:run %s', $testName) . '</comment>';
}
$messages[] = 'Enjoy!';