RegressionTests__WritingToTranscriptOrStdoutTest.st
author Claus Gittinger <cg@exept.de>
Sun, 23 Feb 2020 15:58:35 +0100
changeset 2566 ca2e98a4c1ed
parent 2482 328cde7d443f
permissions -rw-r--r--
#QUALITY by exept class: StringTests added: #test86_misc

"{ Encoding: utf8 }"

"
 COPYRIGHT (c) 2018 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:goodies/regression' }"

"{ NameSpace: RegressionTests }"

TestCase subclass:#WritingToTranscriptOrStdoutTest
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'tests-Regression'
!

!WritingToTranscriptOrStdoutTest class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2018 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
! !

!WritingToTranscriptOrStdoutTest methodsFor:'tests'!

test01_writeToStdout
    Stdout nextPutLine:'hello world'.
!

test02_writeToTranscript
    Transcript showCR:'hello world'.
! !

!WritingToTranscriptOrStdoutTest class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !