package tests.jfun.finecontrol;
import jfun.yan.Container;
import jfun.yan.xml.NutsProcessor;
import junit.framework.TestCase;
public class InvocationOrderTestCase extends TestCase {
public void test1()
throws Exception{
final NutsProcessor proc = new NutsProcessor();
proc.processResource("tests/jfun/finecontrol/config.xml");
final Container yan = proc.getContainer();
yan.getInstance("a");
}
}