quickSelfTest/RunUnitTestsStart.st
changeset 537 3dc87166e57d
parent 536 0d8dabdb4725
child 540 1ccf832eb9e7
--- a/quickSelfTest/RunUnitTestsStart.st	Tue Mar 26 18:45:39 2019 +0100
+++ b/quickSelfTest/RunUnitTestsStart.st	Tue Mar 26 18:47:59 2019 +0100
@@ -29,20 +29,6 @@
 "
 ! !
 
-!RunUnitTestsStart class methodsFor:'constants'!
-
-usage
-    Stderr cr.
-    Stderr nextPutLine:'  --help............................this infromation'.
-    Stderr nextPutLine:'  --settingsFile....................path to a stx settings file (may to set compiler options)'.
-    Stderr nextPutLine:'  --runOnlyExpeccoUnitTests.........run only expecco related test cases'.
-    Stderr nextPutLine:'  --runOnly testName................run only this test case'.
-    Stderr nextPutLine:'  --resultFile......................path to a file for storing the result as xml'.
-    Stderr nextPutLine:'  --forceTestCase...................class name of a test case (only this test case will be executed)'.
-
-    "Modified: / 26-03-2019 / 18:45:15 / Claus Gittinger"
-! !
-
 !RunUnitTestsStart class methodsFor:'startup'!
 
 main:argv
@@ -66,6 +52,18 @@
     ].
 
     ^ super setupSmalltalkFromArguments:argv
+!
+
+usage
+    Stderr cr.
+    Stderr nextPutLine:'  --help............................this infromation'.
+    Stderr nextPutLine:'  --settingsFile....................path to a stx settings file (may to set compiler options)'.
+    Stderr nextPutLine:'  --runOnlyExpeccoUnitTests.........run only expecco related test cases'.
+    Stderr nextPutLine:'  --resultFile......................path to a file for storing the result as xml'.
+    Stderr nextPutLine:'  --forceTestCase testName .........class name of a test case (only this test case will be executed)'.
+    Stderr nextPutLine:'  --run testName ...................same, shorter'.
+
+    "Modified: / 26-03-2019 / 18:47:53 / Claus Gittinger"
 ! !
 
 !RunUnitTestsStart class methodsFor:'documentation'!