SimpleTestResourceCircular.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Sat, 03 Sep 2016 09:08:25 +0100
branchjv
changeset 664 e31b2e7b658d
parent 222 8e6f482297fa
child 724 4dae63fce9f9
permissions -rw-r--r--
FIX: Do not treat skipped test as passed! If it breaks tools, tools should be fixed. A skipped test is not a test that passed. Period.

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

"{ NameSpace: Smalltalk }"

SimpleTestResource subclass:#SimpleTestResourceCircular
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SUnit-Tests'
!


!SimpleTestResourceCircular class methodsFor:'accessing'!

resources
	^preventAvailability isNil
		ifTrue: [super resources, (Array with: SimpleTestResourceA1)]
		ifFalse: [super resources, (Array with: SimpleTestResourceA1 with: SimpleTestResourceCircular1)]
! !

!SimpleTestResourceCircular class methodsFor:'documentation'!

version_SVN
    ^ '§Id: SimpleTestResourceCircular.st 214 2011-03-14 12:22:21Z vranyj1 §'
! !