Skip to content

Commit eebcee4

Browse files
committed
Issue #953: checkpoint ... some test regressions resolved ... additional RwRowanSample9V4Test cases added (incorrectly omitted)
1 parent 3d8a11e commit eebcee4

File tree

3 files changed

+18
-10
lines changed

3 files changed

+18
-10
lines changed

rowan/src/Rowan-Tests/RwTestProjectLibraryGenerator.class.st

+10-10
Original file line numberDiff line numberDiff line change
@@ -3415,27 +3415,27 @@ RwTestProjectLibraryGenerator >> _addDefinitionsFor_0089: resolvedProject [
34153415
className2 := projectName , 'TestCase'.
34163416

34173417
((resolvedProject packageNamed: packageName1) classDefinitionNamed: className1)
3418-
addInstanceMethod: 'A_bc123 ^self' protocol: 'accessing';
3418+
addInstanceMethod: 'A_bc123 ^true' protocol: 'accessing';
34193419
addInstanceMethod: '_123Abc
3420-
^self' protocol: 'accessing';
3420+
^true' protocol: 'accessing';
34213421
addClassMethod: '_123abc
3422-
^self' protocol: 'accessing';
3423-
addClassMethod: '_ABC123 ^self' protocol: 'accessing';
3424-
addClassMethod: '_abc123 ^self' protocol: 'accessing';
3425-
addClassMethod: 'a_bc123 ^self' protocol: 'accessing';
3422+
^true' protocol: 'accessing';
3423+
addClassMethod: '_ABC123 ^true' protocol: 'accessing';
3424+
addClassMethod: '_abc123 ^true' protocol: 'accessing';
3425+
addClassMethod: 'a_bc123 ^true' protocol: 'accessing';
34263426
yourself.
34273427
((resolvedProject packageNamed: packageName3) classDefinitionNamed: className2)
34283428
addInstanceMethod: 'test3 self assert: ' , className1 , ' new A_bc123'
34293429
protocol: 'tests';
34303430
addInstanceMethod: 'test4 self assert: ' , className1 , ' new _123Abc'
34313431
protocol: 'tests';
3432-
addInstanceMethod: 'test5 self assert: ' , className1 , ' new _123abc'
3432+
addInstanceMethod: 'test5 self assert: ' , className1 , ' _123abc'
34333433
protocol: 'tests';
3434-
addInstanceMethod: 'test6 self assert: ' , className1 , ' new _ABC123'
3434+
addInstanceMethod: 'test6 self assert: ' , className1 , ' _ABC123'
34353435
protocol: 'tests';
3436-
addInstanceMethod: 'test7 self assert: ' , className1 , ' new _abc123'
3436+
addInstanceMethod: 'test7 self assert: ' , className1 , ' _abc123'
34373437
protocol: 'tests';
3438-
addInstanceMethod: 'test8 self assert: ' , className1 , ' new a_bc123'
3438+
addInstanceMethod: 'test8 self assert: ' , className1 , ' a_bc123'
34393439
protocol: 'tests';
34403440
yourself.
34413441
^ resolvedProject

rowan/src/Rowan-TestsV3/RwTestProjectLibraryGeneratorV3.class.st

+1
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ RwTestProjectLibraryGeneratorV3 new
9696
genSpec_0083: commitComment;
9797
genSpec_0084: commitComment;
9898
genSpec_0085: commitComment;
99+
genSpec_0089: commitComment;
99100
yourself
100101
"
101102
Class {

rowan/src/Rowan-TestsV4/RwRowanSample9V4Test.class.st

+7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ RwRowanSample9V4Test class >> _rowanSample9ProjectName [
1919
^ 'RowanSample9V4'
2020
]
2121

22+
{ #category : 'testing' }
23+
RwRowanSample9V4Test class >> shouldInheritSelectors [
24+
"Me and my subclasses inherit selectors"
25+
26+
^ true
27+
]
28+
2229
{ #category : 'private' }
2330
RwRowanSample9V4Test >> _rowanSampleProjectBaseName [
2431
"project base name"

0 commit comments

Comments
 (0)