* @author Emmanuel Bernard
*/
public class OneToOneErrorTest extends junit.framework.TestCase {
public void testWrongOneToOne() throws Exception {
AnnotationConfiguration cfg = new AnnotationConfiguration();
cfg.addAnnotatedClass( Show.class )
.addAnnotatedClass( ShowDescription.class );
cfg.setProperty( Environment.HBM2DDL_AUTO, "create-drop" );
try {
SessionFactory sf = cfg.buildSessionFactory();
fail( "Wrong mappedBy does not fail property" );