TestSkipped.st
author Stefan Vogel <sv@exept.de>
Tue, 23 Apr 2013 12:33:43 +0200
changeset 577 3dea1e941af7
parent 548 0b651f2a1c12
child 752 45d5949563ca
permissions -rw-r--r--
class: TestResource added: #safeTearDown changed: #makeAvailable Take care of AbortOperationRequest being raised in Debugger in tearDown after an errornous test case.

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