*/
public void testAssets_3_0() throws Exception
{
IComponentSpecification cs = parsePage("Assets_3_0.page");
IAssetSpecification as = cs.getAsset("mycontext");
assertEquals("context:path/to/context", as.getPath());
as = cs.getAsset("myprivate");
assertEquals("classpath:path/to/private", as.getPath());
as = cs.getAsset("myexternal");
assertEquals("http://myexternal/asset", as.getPath());
assertListsEqual(new String[]
{ "mycontext", "myexternal", "myprivate" }, cs.getAssetNames());
}