104105106107108109110111112113114115116
public void testFormula() throws Exception { Session s; Transaction tx; s = openSession(); tx = s.beginTransaction(); Rock guns = new Rock(); guns.setAvgBeat( 90 ); guns.setType( 2 ); Noise white = new Noise(); white.setAvgBeat( 0 ); white.setType( null ); s.persist( guns );