Assert.assertTrue(instr != null);
Assert.assertTrue(instr instanceof NewObjectInstruction);
NewObjectInstruction newobj = (NewObjectInstruction) instr;
Assert.assertFalse(newobj.isAnonClassType());
Assert.assertNotNull(newobj.resolveInstantiatedType());
Assert.assertEquals(instance.resolveTypeBinding(), newobj.resolveInstantiatedType());
Assert.assertFalse(newobj.hasOuterObjectSpecifier());
Assert.assertNull(newobj.getOuterObjectSpecifierOperand());
}