RegressionTests__WritingToTranscriptOrStdoutTest.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Tue, 02 Jan 2018 16:29:05 +0000
branchjv
changeset 1966 99c870d21885
parent 1567 e17701a073f9
permissions -rw-r--r--
Do not load preferences when spawning a VM ...to make tests stable and not dependent on what's in preferences.

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