TestSkipped.st
author Claus Gittinger <cg@exept.de>
Sun, 08 Sep 2019 00:54:10 +0200
changeset 761 757bd726452d
parent 752 45d5949563ca
permissions -rw-r--r--
#UI_ENHANCEMENT by exept class: TestResultStX changed: #printLineForContextForJavaCompatibleStackTrace:on:

"{ Encoding: utf8 }"

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

"{ NameSpace: Smalltalk }"

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


!TestSkipped methodsFor:'handling'!

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

    "Modified: / 08-06-2019 / 13:54:36 / Claus Gittinger"
! !

!TestSkipped class methodsFor:'documentation'!

version
    ^ '$Header$'
!

version_CVS
    ^ '$Header$'
! !