The Trunk: Tests-pre.420.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tests-pre.420.mcz

commits-2
Patrick Rein uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-pre.420.mcz

==================== Summary ====================

Name: Tests-pre.420
Author: pre
Time: 2 October 2019, 3:15:32.306738 pm
UUID: 3989d8ae-f068-3743-b798-10cb9af692c7
Ancestors: Tests-ct.419

Adds isSimpleSetter and asSimpleSetter tests

=============== Diff against Tests-ct.419 ===============

Item was added:
+ TestCase subclass: #StringSystemSupportTest
+ instanceVariableNames: ''
+ classVariableNames: ''
+ poolDictionaries: ''
+ category: 'Tests-System-Support'!

Item was added:
+ ----- Method: StringSystemSupportTest>>testAsSimpleSetter (in category 'tests') -----
+ testAsSimpleSetter
+ self
+ assert: #x asSimpleSetter = #x: ;
+ assert: #x: asSimpleSetter = #x: ;
+ assert: #x asSimpleSetter isSymbol!

Item was added:
+ ----- Method: StringSystemSupportTest>>testIsSimpleSetter (in category 'tests') -----
+ testIsSimpleSetter
+ self
+ assert: #x: isSimpleSetter ;
+ deny: #x isSimpleSetter ;
+ deny: #+ isSimpleSetter ;
+ deny: #a:b: isSimpleSetter!


Reply | Threaded
Open this post in threaded view
|

Re: The Trunk: Tests-pre.420.mcz

Christoph Thiede

+1

Are you also planning to add something like #asSimpleGetter, too? See thread of Collections-ct.853 :)


Best,

Christoph


Von: Squeak-dev <[hidden email]> im Auftrag von [hidden email] <[hidden email]>
Gesendet: Mittwoch, 2. Oktober 2019 15:15:39
An: [hidden email]; [hidden email]
Betreff: [squeak-dev] The Trunk: Tests-pre.420.mcz
 
Patrick Rein uploaded a new version of Tests to project The Trunk:
http://source.squeak.org/trunk/Tests-pre.420.mcz

==================== Summary ====================

Name: Tests-pre.420
Author: pre
Time: 2 October 2019, 3:15:32.306738 pm
UUID: 3989d8ae-f068-3743-b798-10cb9af692c7
Ancestors: Tests-ct.419

Adds isSimpleSetter and asSimpleSetter tests

=============== Diff against Tests-ct.419 ===============

Item was added:
+ TestCase subclass: #StringSystemSupportTest
+        instanceVariableNames: ''
+        classVariableNames: ''
+        poolDictionaries: ''
+        category: 'Tests-System-Support'!

Item was added:
+ ----- Method: StringSystemSupportTest>>testAsSimpleSetter (in category 'tests') -----
+ testAsSimpleSetter
+        self
+                assert: #x asSimpleSetter = #x: ;
+                assert: #x: asSimpleSetter = #x: ;
+                assert: #x asSimpleSetter isSymbol!

Item was added:
+ ----- Method: StringSystemSupportTest>>testIsSimpleSetter (in category 'tests') -----
+ testIsSimpleSetter
+        self
+                assert: #x: isSimpleSetter ;
+                deny: #x isSimpleSetter ;
+                deny: #+ isSimpleSetter ;
+                deny: #a:b: isSimpleSetter!




Carpe Squeak!