quickSelfTest/RunUnitTestsStart.st
author sr
Tue, 10 Oct 2017 14:51:35 +0200
changeset 380 fc30cef8ec0e
parent 350 a7785bedc5ed
child 381 e72e02985212
permissions -rw-r--r--
#BUGFIX by sr class: RunUnitTestsStart removed: #start class: RunUnitTestsStart class added: #main:

"{ Encoding: utf8 }"

"{ Package: 'stx:goodies/builder/quickSelfTest' }"

"{ NameSpace: Smalltalk }"

StandaloneStartup subclass:#RunUnitTestsStart
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'tests-Regression'
!

!RunUnitTestsStart class methodsFor:'documentation'!

documentation
"
    documentation to be added.

    [author:]
        sr

    [instance variables:]

    [class variables:]

    [see also:]

"
! !

!RunUnitTestsStart class methodsFor:'starting'!

main:argv
    self verboseInfo:('starting application').
    self startStartBlockProcess.

    Stdout nextPutLine:'stredggg1'.
    Stderr nextPutLine:'stredggg2'.
    Transcript nextPutLine:'stredggg3'.
! !

!RunUnitTestsStart class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !