RegressionTests__WritingToTranscriptOrStdoutTest.st
author sr
Wed, 18 Oct 2017 11:28:56 +0200
changeset 1876 dfc87bb5d4ec
parent 1447 2351db93aa5b
child 1567 e17701a073f9
child 2482 328cde7d443f
permissions -rw-r--r--
#OTHER by sr class: RegressionTests::RxTests class definition added:174 methods class: RegressionTests::RxTests class added: #documentation #version #version_CVS

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