1 15 package org.apache.tapestry.asset; 16 17 import org.apache.hivemind.test.HiveMindTestCase; 18 19 25 public class TestExternalResource extends HiveMindTestCase 26 { 27 public void testGetResourceURL() 28 { 29 ExternalResource resource = new ExternalResource("/foo", null); 30 31 try 32 { 33 resource.getResourceURL(); 34 unreachable(); 35 } 36 catch (UnsupportedOperationException ex) 37 { 38 } 40 } 41 } 42 | Popular Tags |