reports/Builder__CoverageReportFormat.st
changeset 214 99e04c6e23fb
parent 213 2c6346e43dc0
child 256 2082732c7c0c
--- a/reports/Builder__CoverageReportFormat.st	Mon Jul 29 20:55:42 2013 +0200
+++ b/reports/Builder__CoverageReportFormat.st	Tue Jul 30 10:19:51 2013 +0200
@@ -28,11 +28,12 @@
 !CoverageReportFormat class methodsFor:'testing'!
 
 isAbstract
+
     ^self == CoverageReportFormat
 
     "Created: / 04-08-2011 / 11:44:25 / Jan Vrany <jan.vrany@fit.cvut.cz>"
     "Modified: / 25-06-2013 / 01:26:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 29-07-2013 / 19:55:31 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified (format): / 30-07-2013 / 09:19:32 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !CoverageReportFormat::Cobertura class methodsFor:'accessing'!
@@ -217,7 +218,7 @@
         name := name , ' [class method]'.
     ].
 
-    stream nextPutAll:'        <method name="'; nextPutAll: name; nextPutLine: '" signature="" line-rate="1.0" branch-rate="1.0" complexity="1.0">'.
+    stream nextPutAll:'        <method name="'; nextPutAll: (self encode: name); nextPutLine: '" signature="" line-rate="1.0" branch-rate="1.0" complexity="1.0">'.
     stream nextPutLine:'          <lines>'.
     currentMethod := method.
 
@@ -270,7 +271,7 @@
     stream nextPutLine:'        </method>'
 
     "Created: / 25-06-2013 / 13:17:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified: / 29-07-2013 / 18:57:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 30-07-2013 / 09:12:19 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 writePackage: packageName with: aBlock