TestResultForRunWithDebug.st
author Claus Gittinger <cg@exept.de>
Sun, 01 Jul 2018 12:29:21 +0200
changeset 717 31366612f433
parent 598 e76eefb119a9
permissions -rw-r--r--
#FEATURE by cg class: TestCase hack to support "should be:" inside test case changed: #performTest class: TestCase::Should class definition added: #be: #testCase: #value: class: TestCase::Should class added: #documentation

"{ Package: 'stx:goodies/sunit' }"

"{ NameSpace: Smalltalk }"

TestResultStX subclass:#TestResultForRunWithDebug
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SUnit-Smalltalk/X'
!


!TestResultForRunWithDebug methodsFor:'outcome'!

rememberException:exception

    super rememberException: exception.
Transcript showCR:'99'.
    ^exception reject.

    "Created: / 20-08-2011 / 13:32:57 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !

!TestResultForRunWithDebug class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestResultForRunWithDebug.st,v 1.2 2015-01-31 00:31:19 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestResultForRunWithDebug.st,v 1.2 2015-01-31 00:31:19 cg Exp $'
! !