'From Pharo5.0 of 16 April 2015 [Latest update: #50761] on 7 August 2016 at 6:07:10.770148 pm'! TestCase subclass: #BugTestCase instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'BUG'! !BugTestCase methodsFor: 'testing' stamp: 'dkh 8/7/2016 17:53'! test self halt! ! !BugTestCase methodsFor: 'running' stamp: 'dkh 8/7/2016 17:50'! setUp super setUp! ! !BugTestCase methodsFor: 'running' stamp: 'dkh 8/7/2016 18:06'! tearDown [ self error: 'teardown' ] ensure: [ "Imagine that something important NEEDED to be done here" self halt ]. super tearDown! !