144145146147148149150151152153154
long initTime = System.currentTimeMillis(); for (int i=0;i<iterations;i++) { entity.doByValueTest(property); if (property.getX()!=1000) { throw new RuntimeException("Property was changed in a call-by-value operation"); }
175176177178179180181182183184185
long initTime = System.currentTimeMillis(); for (int i=0;i<iterations;i++) { entity.doByValueTest(property); if (property.getX()==1000) { throw new RuntimeException("Property was not changed in a call-by-reference operation"); }