#DOCUMENTATION by cg
authorClaus Gittinger <cg@exept.de>
Thu, 28 Mar 2019 14:03:19 +0100
changeset 2197 8cea1f0db541
parent 2196 b60b5cc7744c
child 2198 f31e0abf73ad
#DOCUMENTATION by cg class: RegressionTests::MemoryTest comment/format in: #test1
RegressionTests__MemoryTest.st
--- a/RegressionTests__MemoryTest.st	Thu Mar 28 13:04:15 2019 +0100
+++ b/RegressionTests__MemoryTest.st	Thu Mar 28 14:03:19 2019 +0100
@@ -64,16 +64,19 @@
     1 to:10 do:[:rep | 
         x := XML::Element tag:'x'.
         ObjectMemory garbageCollect.
-        x attributes:(Array with:(XML::Attribute name:'a' value:'1')
-                    with:(XML::Attribute name:'a' value:'1')).
+        x attributes:(Array 
+                        with:(XML::Attribute name:'a' value:'1')
+                        with:(XML::Attribute name:'a' value:'1')).
         1 to:500 do:[:i | 
             x addNode:(y := XML::Element tag:'y').
-            y attributes:(Array with:(XML::Attribute name:'a' value:'1')
-                        with:(XML::Attribute name:'a' value:'1')).
+            y attributes:(Array 
+                            with:(XML::Attribute name:'a' value:'1')
+                            with:(XML::Attribute name:'a' value:'1')).
             1 to:1000 do:[:j | 
                 y addNode:(z := XML::Element tag:'y').
-                z attributes:(Array with:(XML::Attribute name:'a' value:'1')
-                            with:(XML::Attribute name:'a' value:'1')).
+                z attributes:(Array 
+                                with:(XML::Attribute name:'a' value:'1')
+                                with:(XML::Attribute name:'a' value:'1')).
             ]
         ].
         ObjectMemory garbageCollect.
@@ -91,6 +94,7 @@
      self new test1"
 
     "Modified: / 19-12-2018 / 17:05:45 / Claus Gittinger"
+    "Modified (format): / 28-03-2019 / 14:03:01 / Claus Gittinger"
 ! !
 
 !MemoryTest class methodsFor:'documentation'!