1 17 18 package tutorial; 19 20 import org.apache.avalon.merlin.unit.AbstractMerlinTestCase; 21 22 27 public class StandardTestCase extends AbstractMerlinTestCase 28 { 29 30 34 38 public StandardTestCase( String name ) 39 { 40 super( name ); 41 } 42 43 47 public void testServiceResolution() throws Exception  48 { 49 Object hello = resolve( "/tutorial/hello" ); 50 assertNotNull( "hello", hello ); 51 } 52 } 53 54 | Popular Tags |