assertFalse(test instanceof MockParentInterface1);
assertFalse(test instanceof MockParentInterface2);
assertFalse(test instanceof MockChildInterface1);
assertFalse(test instanceof MockChildInterface2);
proxyFactory = mgr.createProxyFactory(new Class[]{Comparable.class}, myCl);
test = proxyFactory.createProxy(name);
try {
proxyFactory = mgr.createProxyFactory(null, myCl);
fail();