public void testEqualsNullComparison() {
assertEqualsNullComparisonReturnsFalse(model);
}
public void testToString() {
CacheStruct cacheStruct = new CacheStruct("main");
model.setCacheStruct(cacheStruct);
model.setFlushBeforeMethodExecution(true);
String actual = model.getClass().getName() + "@"
+ ObjectUtils.getIdentityHexString(model) + "[cacheStructs={"
+ cacheStruct.getClass().getName() + "@"
+ ObjectUtils.getIdentityHexString(cacheStruct)
+ "[cacheName='main', groups=null]"
+ "}, flushBeforeMethodExecution=true]";
assertEquals(model.toString(), actual);
}