/**
* @author Emmanuel Bernard
*/
public class SafeMappingTest extends junit.framework.TestCase {
public void testDeclarativeMix() throws Exception {
AnnotationConfiguration cfg = new AnnotationConfiguration();
cfg.addAnnotatedClass( IncorrectEntity.class );
cfg.setProperty( Environment.HBM2DDL_AUTO, "create-drop" );
try {
SessionFactory sf = cfg.buildSessionFactory();
fail( "Entity wo id should fail" );
}
catch (AnnotationException e) {
//success
}