1 29 package net.sourceforge.groboutils.autodoc.v1.junit; 30 31 import org.apache.tools.ant.taskdefs.optional.junit.JUnitResultFormatter; 32 import org.apache.tools.ant.taskdefs.optional.junit.JUnitTest; 33 34 import net.sourceforge.groboutils.autodoc.v1.spi.TestListenerFactory; 35 36 37 45 public class AutoDocJUnitFormatter extends AutoDocJUnitListener 46 implements JUnitResultFormatter 47 { 48 52 public AutoDocJUnitFormatter() 53 { 54 super(); 55 } 56 57 58 62 public AutoDocJUnitFormatter( TestListenerFactory factories[] ) 63 { 64 super( factories ); 65 } 66 67 68 69 72 public void startTestSuite(JUnitTest suite) 73 { 74 } 76 77 80 public void endTestSuite(JUnitTest suite) 81 { 82 } 84 85 88 public void setOutput(java.io.OutputStream out) 89 { 90 } 92 93 96 public void setSystemOutput( String out ) 97 { 98 } 100 101 102 105 public void setSystemError( String err ) 106 { 107 } 109 } 110 111 | Popular Tags |