s/BenchmarkReportJSON.st
changeset 90 af50db15da25
parent 89 b37be3ddfeed
child 96 b3e57ae92f7f
--- a/s/BenchmarkReportJSON.st	Sun Jun 23 00:58:30 2013 +0100
+++ b/s/BenchmarkReportJSON.st	Sun Jun 23 02:37:07 2013 +0100
@@ -34,12 +34,19 @@
 
 writeBenchmark: benchmark
     json writeDictionaryWith:[
+        json writeKey: 'name' value: benchmark name.
+        json writeElementSeparator.
+        json writeKey: 'id' value: benchmark id.
+        json writeElementSeparator.
+        json writeKey: 'description' value: benchmark description.
+        json writeElementSeparator.
         json writeKey: 'class' value: benchmark instance class name.
         json writeElementSeparator.
         json writeKey: 'selector' value: benchmark selector.
     ]
 
     "Created: / 12-06-2013 / 14:10:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 23-06-2013 / 02:27:26 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 writeConfiguration