diff --git a/plugins/CoreConsole/Commands/GenerateTest.php b/plugins/CoreConsole/Commands/GenerateTest.php
index fa2d391bf83ab0bb6644864ebe7ab68eb0a57110..c2b31b6fe5a66bdab2263dac19dbfca28815144d 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!';