// Now looking at simply changing what fields we initialize in a ctor - the simplest case really
@Test
public void constructorReloading4() throws Exception {
String theType = "ctors.Setter";
TypeRegistry r = getTypeRegistry(theType);
ReloadableType rtype = r.addType(theType, loadBytesForClass(theType));
result = runConstructor(rtype.getClazz(), "");
Result res = runOnInstance(rtype.getClazz(), result.returnValue, "getInteger");
assertEquals(1, ((Integer) res.returnValue).intValue());
res = runOnInstance(rtype.getClazz(), result.returnValue, "getString");