System.out.println("Doing stuff in testOne ...");
Parent bean = Impala.getBean("parent", Parent.class);
System.out.println("Got bean of type " + bean);
Child child = bean.tryGetChild();
try {
child.childMethod();
fail();
}
catch (RuntimeException e) {
// e.printStackTrace();
}