# HG changeset patch # User sr # Date 1507640055 -7200 # Node ID e72e029852124bd2326e106e6bc634994ceb973c # Parent fc30cef8ec0e7e8ff16762a07507d65c09b35dd7 #BUGFIX by sr class: RunUnitTestsStart class changed: #main: diff -r fc30cef8ec0e -r e72e02985212 quickSelfTest/RunUnitTestsStart.st --- a/quickSelfTest/RunUnitTestsStart.st Tue Oct 10 14:51:35 2017 +0200 +++ b/quickSelfTest/RunUnitTestsStart.st Tue Oct 10 14:54:15 2017 +0200 @@ -35,9 +35,11 @@ self verboseInfo:('starting application'). self startStartBlockProcess. - Stdout nextPutLine:'stredggg1'. - Stderr nextPutLine:'stredggg2'. - Transcript nextPutLine:'stredggg3'. + Stdout nextPutLine:'12'. + Stderr nextPutLine:'32'. + + (OperatingSystem pathOfSTXExecutable asFilename / 'Start.st') fileIn. + Transcript nextPutLine:'43'. ! ! !RunUnitTestsStart class methodsFor:'documentation'!