RegressionTests__WritingToTranscriptOrStdoutTest.st
author Patrik Svestka <patrik.svestka@gmail.com>
Fri, 19 Feb 2021 13:58:24 +0100
branchjv
changeset 2603 6ac9ae0a4987
parent 1567 e17701a073f9
permissions -rwxr-xr-x
Test for a header change in ChangeSet >> #fileOutAs:

"{ 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$'
! !