View Javadoc
1 /*** 2 * QuiltDecorator 3 * 4 * This is a test decorator that will collect 5 * coverage information from JUnit tests. 6 */ 7 8 package junit.quilt.framework; 9 10 import java.util.Map; 11 import java.util.HashMap; 12 13 import junit.extensions.*; 14 import junit.framework.*; 15 16 public class QuiltDecorator 17 extends TestDecorator 18 { 19 private QuiltRegistry registry = null; 20 //private static Map reports = new HashMap(); // TEST RESULT X COVERAGE RPT 21 public QuiltDecorator( Test test, QuiltRegistry registry ) { 22 super( test ); 23 this.registry = registry; 24 } 25 26 public void run(TestResult result) { 27 basicRun( result ); 28 // Store Coverage Information. . . 29 30 } 31 }

This page was automatically generated by Maven