Java cvprof Coverage Report for
Main.java

    1   
    2   package uk.co.badgersinfoil.cvprof.example;
    3   
    4   /**
    5    * This class executes all the example code
    6    */
    7   public class Main {
    8   	public static void main(String[] args) { new Main(); }
    9   
   10   	private Main() {
   11   		MultiClassTest.test();
   12   		SyntheticConstructor.test();
   13   		new MultiLineStatements().test();
   14   		new TryCatchFinally().test();
   15   		new SyntheticReturns().test();
   16   		Multithreaded.test();
   17   		new OptimisationArtifacts().test();
   18   		new Initializers().test();
   19   	}
   20   }