indexedcollectionofelementstest.java

来自「hibernate3.2.6源码和jar包」· Java 代码 · 共 33 行

JAVA
33
字号
//$package org.hibernate.test.annotations.collectionelement.indexedCollection;import org.hibernate.test.annotations.TestCase;import org.hibernate.Session;/** * @author Emmanuel Bernard */public class IndexedCollectionOfElementsTest extends TestCase {	public void testIndexedCollectionOfElements() throws Exception {		Sale sale = new Sale();		Contact contact = new Contact();		contact.setName( "Emmanuel" );		sale.getContacts().add(contact);		Session s = openSession(  );		s.getTransaction().begin();		s.save( sale );		s.flush();		s.get( Sale.class, sale.getId() );		assertEquals( 1, sale.getContacts().size() );		s.getTransaction().rollback();		s.close();	}	protected Class[] getMappings() {		return new Class[] {				Sale.class		};	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?