RegressionTests__WritingToTranscriptOrStdoutTest.st
author sr
Tue, 29 May 2018 15:57:59 +0200
changeset 1942 ade44c2e9798
parent 1447 2351db93aa5b
child 1567 e17701a073f9
child 2482 328cde7d443f
permissions -rw-r--r--
#BUGFIX by sr class: RegressionTests::HTTPServerTests class definition added: #setUp #tearDown #test01_startup_shutdown #test02_simpleResponses #test03_restResponse class: RegressionTests::HTTPServerTests class added: #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$'
! !