quickSelfTest/RunUnitTestsStart.st
author sr
Tue, 10 Oct 2017 14:55:05 +0200
changeset 382 777dbd727377
parent 381 e72e02985212
child 383 e9e6b209c623
permissions -rw-r--r--
#BUGFIX by sr class: RunUnitTestsStart class changed: #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:'12'.
    Stderr nextPutLine:'32'.

    (OperatingSystem pathOfSTXExecutable asFilename directory / 'Start.st') fileIn.
    Transcript nextPutLine:'43'.
! !

!RunUnitTestsStart class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !