assertThat(created, not(is(bean)));
}
@Test(expected = SecurityException.class)
public void testBuildMapFromBeanWithFaultyGetter_shouldThrowException() throws Exception {
BeanWithFaultyGetter bean = new BeanWithFaultyGetter();
BeanUtilsExtended.buildObjectAttributeMap(bean);
}