Skip to content

Commit

Permalink
T2AbstractTest should be abstract
Browse files Browse the repository at this point in the history
Fix #8744
  • Loading branch information
astares committed Mar 9, 2021
1 parent 0c9cf24 commit 1fb9c5f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/TraitsV2-Tests/T2AbstractTest.class.st
Expand Up @@ -10,6 +10,12 @@ Class {
#category : #'TraitsV2-Tests'
}

{ #category : #testing }
T2AbstractTest class >> isAbstract [

^self == T2AbstractTest
]

{ #category : #'instance creation' }
T2AbstractTest >> newClass: aName [
^self newClass: aName with: #() uses: #()
Expand Down Expand Up @@ -73,7 +79,7 @@ T2AbstractTest >> newTrait: aName with: slots uses: aComposition category: categ
{ #category : #running }
T2AbstractTest >> setUp [
super setUp.
createdClasses := OrderedCollection new.
createdClasses := OrderedCollection new
]

{ #category : #running }
Expand Down

0 comments on commit 1fb9c5f

Please sign in to comment.