1 16 package org.apache.commons.latka.jelly; 17 18 import junit.framework.TestSuite; 19 import junit.textui.TestRunner; 20 21 import org.apache.commons.jelly.tags.junit.JellyTestSuite; 22 23 29 public class TestLatka extends JellyTestSuite { 30 31 public static void main( String [] args ) throws Exception { 32 TestRunner.run( suite() ); 33 } 34 35 public static TestSuite suite() throws Exception { 36 return createTestSuite(TestLatka.class, "testLatka.jelly"); 37 } 38 } 39 | Popular Tags |