import org.stringtree.tract.ByteTract;
public class CommonContextFallbackTest extends TestCase {
public void testGetFromContext() throws IOException {
CommonContext context = new RemoteSpecCommonContext("src/test/files/fb/fa.spec");
Fetcher tpls = (Fetcher)context.getObject(MojasefConstants.TEMPLATE_SOURCE);
assertEquals("I am aa: ${*hello}", tpls.getObject("home"));
assertEquals("Hello, ${value}!", tpls.getObject("hello"));
}