[hibernate-commits] Hibernate SVN: r15032 - search/trunk/src/test/org/hibernate/search/test/id/providedId.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Mon Aug 11 10:53:01 EDT 2008


Author: epbernard
Date: 2008-08-11 10:53:01 -0400 (Mon, 11 Aug 2008)
New Revision: 15032

Modified:
   search/trunk/src/test/org/hibernate/search/test/id/providedId/ProvidedIdTest.java
Log:
Style improvements

Modified: search/trunk/src/test/org/hibernate/search/test/id/providedId/ProvidedIdTest.java
===================================================================
--- search/trunk/src/test/org/hibernate/search/test/id/providedId/ProvidedIdTest.java	2008-08-11 13:27:31 UTC (rev 15031)
+++ search/trunk/src/test/org/hibernate/search/test/id/providedId/ProvidedIdTest.java	2008-08-11 14:53:01 UTC (rev 15032)
@@ -1,68 +1,65 @@
 package org.hibernate.search.test.id.providedId;
 
+import java.util.List;
+
+import org.apache.lucene.analysis.standard.StandardAnalyzer;
+import org.apache.lucene.queryParser.ParseException;
+import org.apache.lucene.queryParser.QueryParser;
+import org.apache.lucene.search.Query;
+
 import org.hibernate.Session;
 import org.hibernate.Transaction;
-import org.hibernate.search.test.SearchTestCase;
-import org.hibernate.search.Search;
-import org.hibernate.search.FullTextSession;
 import org.hibernate.search.FullTextQuery;
-import org.apache.lucene.search.Query;
-import org.apache.lucene.queryParser.QueryParser;
-import org.apache.lucene.queryParser.ParseException;
-import org.apache.lucene.analysis.standard.StandardAnalyzer;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.hibernate.search.FullTextSession;
+import org.hibernate.search.Search;
+import org.hibernate.search.test.SearchTestCase;
 
-import java.util.List;
-
 /**
  * @author Navin Surtani (<a href="mailto:nsurtani at redhat.com">nsurtani at redhat.com</a>)
  */
 public class ProvidedIdTest extends SearchTestCase {
 
-   JBossCachePerson person1, person2;
+	protected Class[] getMappings() {
+		return new Class[] {
+				JBossCachePerson.class
+		};
+	}
 
-   protected Class[] getMappings() {
-      return new Class[]{
-              JBossCachePerson.class
-      };
-   }
+	public void testProvidedId() throws ParseException {
 
-   public void testProvidedId() throws ParseException {
+		JBossCachePerson person1 = new JBossCachePerson();
+		person1.setName( "Big Goat" );
+		person1.setBlurb( "Eats grass" );
 
-      person1 = new JBossCachePerson();
-      person1.setName("Big Goat");
-      person1.setBlurb("Eats grass");
+		JBossCachePerson person2 = new JBossCachePerson();
+		person2.setName( "Mini Goat" );
+		person2.setBlurb( "Eats cheese" );
 
-      person2 = new JBossCachePerson();
-      person2.setName("Mini Goat");
-      person2.setBlurb("Eats cheese");
 
+		Session session = openSession();
+		FullTextSession fullTextSession = Search.getFullTextSession( session );
+		Transaction transaction = session.beginTransaction();
+		session.persist( person1 );
+		session.persist( person2 );
 
-      Session session = openSession();
-      FullTextSession fullTextSession = Search.getFullTextSession(session);
-      Transaction transaction = session.beginTransaction();
-      session.persist(person1);
-      session.persist(person2);
+		transaction.commit();
+		session.clear();
 
-      transaction.commit();
-      session.clear();
+		transaction = fullTextSession.beginTransaction();
 
-      transaction = fullTextSession.beginTransaction();
-      
-      QueryParser parser = new QueryParser("name", new StandardAnalyzer());
-      Query luceneQuery = parser.parse("Goat");
+		QueryParser parser = new QueryParser( "name", new StandardAnalyzer() );
+		Query luceneQuery = parser.parse( "Goat" );
 
-      FullTextQuery fullTextQuery = fullTextSession.createFullTextQuery(luceneQuery, JBossCachePerson.class);
+		FullTextQuery fullTextQuery = fullTextSession.createFullTextQuery( luceneQuery, JBossCachePerson.class );
 
 
-      List results = fullTextQuery.list();
+		List results = fullTextQuery.list();
 
-      transaction.commit();
-      session.close();
+		transaction.commit();
+		session.close();
 
-      assert results.size() == 2;
-   }
+		assertEquals( 2, results.size() );
+	}
 
 
 }




More information about the hibernate-commits mailing list