TestSkipped.st
author Claus Gittinger <cg@exept.de>
Wed, 17 Apr 2013 20:42:26 +0200
changeset 570 c9c4c97948cc
parent 548 0b651f2a1c12
child 752 45d5949563ca
permissions -rw-r--r--
class: TestCase comment/format in: #runCaseAsFailure changed: #runCase #runCaseAsFailure: only do a tearDown, if the previous setup was executed (i.e. no tearDown, if an error happened during setup)

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

TestFailure subclass:#TestSkipped
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SUnit-Preload'
!


!TestSkipped methodsFor:'handling'!

sunitAnnounce: aTestCase toResult: aTestResult
        aTestResult addSkipped: aTestCase.
        self sunitExitWith: false.
! !

!TestSkipped class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestSkipped.st,v 1.1 2013-04-03 13:25:08 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/sunit/TestSkipped.st,v 1.1 2013-04-03 13:25:08 cg Exp $'
! !