System.out.println("putVerificationDifference()");
JobDescription instance = new JobDescription();
Map<String,String> map = new HashMap<String, String>();
String key = getPrivateField(instance, "VERIFICATION");
Verification old = Verification.NONE;
Verification expected = Verification.VERIFY;
callPrivateMethod(instance, "putVerificationDifference", new Class[] { Map.class, Verification.class, Verification.class }, new Object[] { map, old, expected });
assertEquals("The putVerificationDifference() method did not put the correct entry into the map", "v", map.get(key));
map.clear();