1 16 package org.apache.commons.jelly.impl; 17 18 import junit.framework.Test; 19 import junit.framework.TestCase; 20 import junit.framework.TestSuite; 21 import junit.textui.TestRunner; 22 23 28 public class TestTagLibraryResolver extends TestCase { 29 30 public static void main(String [] args) { 31 TestRunner.run(suite()); 32 } 33 34 public static Test suite() { 35 return new TestSuite(TestTagLibraryResolver.class); 36 } 37 38 public TestTagLibraryResolver(String testName) { 39 super(testName); 40 } 41 42 public void testResolver() throws Exception { 43 47 53 } 54 } 55 | Popular Tags |