# HG changeset patch # User Claus Gittinger # Date 1553778199 -3600 # Node ID 8cea1f0db541b3b43dc8eb9e2069d6e19713f8c0 # Parent b60b5cc7744cb0e1aacf8e51f8de3d0a00876520 #DOCUMENTATION by cg class: RegressionTests::MemoryTest comment/format in: #test1 diff -r b60b5cc7744c -r 8cea1f0db541 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'!