[squeak-dev] The Trunk: Tests-pre.420.mcz

Thiede, Christoph Christoph.Thiede at student.hpi.uni-potsdam.de
Wed Oct 2 13:25:20 UTC 2019


+1

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


Best,

Christoph

________________________________
Von: Squeak-dev <squeak-dev-bounces at lists.squeakfoundation.org> im Auftrag von commits at source.squeak.org <commits at source.squeak.org>
Gesendet: Mittwoch, 2. Oktober 2019 15:15:39
An: squeak-dev at lists.squeakfoundation.org; packages at lists.squeakfoundation.org
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!


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.squeakfoundation.org/pipermail/squeak-dev/attachments/20191002/ecb5a5c8/attachment.html>


More information about the Squeak-dev mailing list