RegressionTests__WritingToTranscriptOrStdoutTest.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 31 May 2017 07:27:55 +0100
branchjv
changeset 1604 550ad2d68e2a
parent 1567 e17701a073f9
permissions -rw-r--r--
CLeanuo: don't use hardcoded filenames in `FileStreamTest` Never ever use hardcoded names in tests!

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