quickSelfTest/RunUnitTestsStart.st
changeset 537 3dc87166e57d
parent 536 0d8dabdb4725
child 540 1ccf832eb9e7
equal deleted inserted replaced
536:0d8dabdb4725 537:3dc87166e57d
    27     [see also:]
    27     [see also:]
    28 
    28 
    29 "
    29 "
    30 ! !
    30 ! !
    31 
    31 
    32 !RunUnitTestsStart class methodsFor:'constants'!
       
    33 
       
    34 usage
       
    35     Stderr cr.
       
    36     Stderr nextPutLine:'  --help............................this infromation'.
       
    37     Stderr nextPutLine:'  --settingsFile....................path to a stx settings file (may to set compiler options)'.
       
    38     Stderr nextPutLine:'  --runOnlyExpeccoUnitTests.........run only expecco related test cases'.
       
    39     Stderr nextPutLine:'  --runOnly testName................run only this test case'.
       
    40     Stderr nextPutLine:'  --resultFile......................path to a file for storing the result as xml'.
       
    41     Stderr nextPutLine:'  --forceTestCase...................class name of a test case (only this test case will be executed)'.
       
    42 
       
    43     "Modified: / 26-03-2019 / 18:45:15 / Claus Gittinger"
       
    44 ! !
       
    45 
       
    46 !RunUnitTestsStart class methodsFor:'startup'!
    32 !RunUnitTestsStart class methodsFor:'startup'!
    47 
    33 
    48 main:argv
    34 main:argv
    49     self verboseInfo:('starting application').
    35     self verboseInfo:('starting application').
    50     self startStartBlockProcess.
    36     self startStartBlockProcess.
    64         self usage.
    50         self usage.
    65         AbortOperationRequest raise.
    51         AbortOperationRequest raise.
    66     ].
    52     ].
    67 
    53 
    68     ^ super setupSmalltalkFromArguments:argv
    54     ^ super setupSmalltalkFromArguments:argv
       
    55 !
       
    56 
       
    57 usage
       
    58     Stderr cr.
       
    59     Stderr nextPutLine:'  --help............................this infromation'.
       
    60     Stderr nextPutLine:'  --settingsFile....................path to a stx settings file (may to set compiler options)'.
       
    61     Stderr nextPutLine:'  --runOnlyExpeccoUnitTests.........run only expecco related test cases'.
       
    62     Stderr nextPutLine:'  --resultFile......................path to a file for storing the result as xml'.
       
    63     Stderr nextPutLine:'  --forceTestCase testName .........class name of a test case (only this test case will be executed)'.
       
    64     Stderr nextPutLine:'  --run testName ...................same, shorter'.
       
    65 
       
    66     "Modified: / 26-03-2019 / 18:47:53 / Claus Gittinger"
    69 ! !
    67 ! !
    70 
    68 
    71 !RunUnitTestsStart class methodsFor:'documentation'!
    69 !RunUnitTestsStart class methodsFor:'documentation'!
    72 
    70 
    73 version
    71 version