@Test
public void testBuildUpdateSystemCodesMessage() {
SystemCodes oldsc = new SystemCodes("categoryold","keyold","old");
SystemCodes newsc = new SystemCodes("categorynew","keynew","new");
TestCodes oldtc = new TestCodes();
oldtc.setStatus(oldsc);
TestCodes newtc = new TestCodes();
newtc.setStatus(newsc);
TestCodes sametc = new TestCodes();
sametc.setStatus(oldsc);
String expected = "Changed Test Codes Key:Status from 'keyold:old' to 'keynew:new'";
Assert.assertEquals(expected,
CrudUtil.buildUpdateMessage(oldtc, newtc));
Assert.assertEquals("",