RegressionTests__WritingToTranscriptOrStdoutTest.st
author sr
Thu, 23 Apr 2020 11:26:55 +0200
changeset 2590 eeb87a767aa8
parent 2482 328cde7d443f
permissions -rw-r--r--
#FEATURE by gg class: RegressionTests::WebSocketTest removed: #testHelloWorld category of: #manualCompressionTest class: WebSocketTest added: #manualCompressionTest #testHelloWorld changed: #testCommunication100

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