CustomCodeGeneratorTestCaseCodeGenerator.st
changeset 628 6f639016753b
parent 592 25f7fff0dc9e
child 635 9edd6a278835
--- a/CustomCodeGeneratorTestCaseCodeGenerator.st	Tue Aug 12 11:21:19 2014 +0100
+++ b/CustomCodeGeneratorTestCaseCodeGenerator.st	Fri Aug 22 19:09:38 2014 +0100
@@ -15,10 +15,24 @@
     "Modified: / 13-06-2014 / 09:01:57 / Jakub Nesveda <nesvejak@fit.cvut.cz>"
 !
 
+group
+    "Returns a collection strings describing a group to which
+     receiver belongs. A groups may be nested hence the array of
+     strings. For example for subgroup 'Accessors' in group 'Generators'
+     this method should return #('Generators' 'Accessors')."
+
+    "/ By default return an empty array which means the item will appear
+    "/ in top-level group.
+    ^ #('Generators')
+
+    "Created: / 22-08-2014 / 18:50:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+!
+
 label
-    ^ 'CodeGeneratorTestCase class'
+    ^ 'New Code Generator Testcase'
 
     "Modified: / 13-06-2014 / 09:01:36 / Jakub Nesveda <nesvejak@fit.cvut.cz>"
+    "Modified: / 22-08-2014 / 18:50:50 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !CustomCodeGeneratorTestCaseCodeGenerator methodsFor:'executing'!