RegressionTests__WritingToTranscriptOrStdoutTest.st
author Jan Vrany <jan.vrany@labware.com>
Thu, 01 Jul 2021 16:09:20 +0100
branchjv
changeset 2602 1e701f1808a7
parent 1567 e17701a073f9
permissions -rwxr-xr-x
Fix `CompilerTest >> testNot` after cherry-picking from 84348e65ca8d in d0679511ef19

"{ Package: 'stx:goodies/regression' }"

"{ NameSpace: RegressionTests }"

TestCase subclass:#WritingToTranscriptOrStdoutTest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'tests-Regression'
!


!WritingToTranscriptOrStdoutTest methodsFor:'tests'!

test01_writeToStdout
    Stdout nextPutLine:'hello world'.
!

test02_writeToTranscript
    Transcript showCR:'hello world'.
! !

!WritingToTranscriptOrStdoutTest class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !