quickSelfTest/RunUnitTestsStart.st
author sr
Tue, 10 Oct 2017 14:45:57 +0200
changeset 379 8e9d8c032cc7
parent 350 a7785bedc5ed
child 380 fc30cef8ec0e
permissions -rw-r--r--
#OTHER by sr initial checkin class: RunUnitTestsStart added: #start class: RunUnitTestsStart class added: #documentation

"{ 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 methodsFor:'starting'!

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

!RunUnitTestsStart class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !