ExceptionVerifier ExecutionTester
/**
* Tries to create a new instance of the DynaClass. This is not possible.
*/
@Test(expected=UnsupportedOperationException.class) public void testGetDynaClassNewInstance() throws Exception {
createBean(false).getDynaClass().newInstance();
}