1 26 27 package net.sourceforge.groboutils.codecoverage.v2.compiler.testcode; 28 29 import net.sourceforge.groboutils.autodoc.v1.AutoDoc; 30 31 32 39 public class Main1 40 { 41 private static final Class THIS_CLASS = Main1.class; 42 private static final AutoDoc DOC = new AutoDoc( THIS_CLASS ); 43 44 public static void main( String [] args ) 45 { 46 System.out.println( THIS_CLASS ); 47 DOC.getLog().info( "Inside Main1" ); 48 cover( "test", (short)0, Short.MAX_VALUE, Short.MIN_VALUE ); 49 50 Passed.passed( "Main1" ); 51 } 52 53 public static void cover( String classSig, 54 short methodIndex, short channel, short markIndex ) 55 { 56 System.out.println( "Main1.cover: "+classSig ); 57 DOC.getLog().info( "!!cover!!" ); 58 } 59 } 60 61 | Popular Tags |