Coverage Report - net.sourceforge.combean.test.suites.AllCombeanTests
 
Classes in this File Line Coverage Branch Coverage Complexity
AllCombeanTests
0%
0/7
N/A
1
 
 1  
 /*
 2  
  * Created on 19.04.2008
 3  
  *
 4  
  */
 5  
 package net.sourceforge.combean.test.suites;
 6  
 
 7  
 import junit.framework.Test;
 8  
 import junit.framework.TestSuite;
 9  
 
 10  0
 public class AllCombeanTests {
 11  
 
 12  
     public static void main(String[] args) throws Exception {
 13  0
         junit.textui.TestRunner.run(AllCombeanTests.suite());
 14  0
     }
 15  
 
 16  
     public static Test suite() throws Exception {
 17  0
         TestSuite suite = new TestSuite("All Combean Tests");
 18  0
         suite.addTest(AllJavaCombeanTests.suite());
 19  0
         suite.addTest(AllGroovyCombeanTests.suite());
 20  
 
 21  0
         return suite;
 22  
     }
 23  
 }