📄 compositeusertypetest.java
字号:
//$Id: CompositeUserTypeTest.java,v 1.2 2005/04/10 22:09:06 oneovthafew Exp $package org.hibernate.test.cut;import java.math.BigDecimal;import java.util.Currency;import java.util.List;import junit.framework.Test;import junit.framework.TestSuite;import org.hibernate.Session;import org.hibernate.dialect.HSQLDialect;import org.hibernate.dialect.OracleDialect;import org.hibernate.test.TestCase;/** * @author Gavin King */public class CompositeUserTypeTest extends TestCase { public CompositeUserTypeTest(String str) { super(str); } public void testCompositeUserType() { Session s = openSession(); org.hibernate.Transaction t = s.beginTransaction(); Transaction tran = new Transaction(); tran.setDescription("a small transaction"); tran.setValue( new MonetoryAmount( new BigDecimal(1.5), Currency.getInstance("USD") ) ); s.persist(tran); List result = s.createQuery("from Transaction tran where tran.value.amount > 1.0 and tran.value.currency = 'USD'").list(); assertEquals( result.size(), 1 ); tran.getValue().setCurrency( Currency.getInstance("AUD") ); result = s.createQuery("from Transaction tran where tran.value.amount > 1.0 and tran.value.currency = 'AUD'").list(); assertEquals( result.size(), 1 ); if ( !(getDialect() instanceof HSQLDialect) && ! (getDialect() instanceof OracleDialect) ) { result = s.createQuery("from Transaction where value = (1.5, 'AUD')").list(); assertEquals( result.size(), 1 ); result = s.createQuery("from Transaction txn where txn.value = (1.5, 'AUD')").list(); assertEquals( result.size(), 1 ); } s.delete(tran); t.commit(); s.close(); } protected String[] getMappings() { return new String[] { "cut/Transaction.hbm.xml" }; } public static Test suite() { return new TestSuite(CompositeUserTypeTest.class); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -