[hibernate-commits] Hibernate SVN: r10522 - in trunk/HibernateExt/tools/src/test/org/hibernate/tool: . stat

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Sep 22 08:51:23 EDT 2006


Author: max.andersen at jboss.com
Date: 2006-09-22 08:51:20 -0400 (Fri, 22 Sep 2006)
New Revision: 10522

Modified:
   trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java
   trunk/HibernateExt/tools/src/test/org/hibernate/tool/stat/StatisticsBrowserTest.java
Log:


Modified: trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java
===================================================================
--- trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java	2006-09-22 12:28:16 UTC (rev 10521)
+++ trunk/HibernateExt/tools/src/test/org/hibernate/tool/NonReflectiveTestCase.java	2006-09-22 12:51:20 UTC (rev 10522)
@@ -2,7 +2,6 @@
 package org.hibernate.tool;
 
 import java.io.File;
-import java.util.Iterator;
 
 import org.hibernate.HibernateException;
 import org.hibernate.Interceptor;
@@ -11,9 +10,6 @@
 import org.hibernate.cfg.Environment;
 import org.hibernate.dialect.Dialect;
 import org.hibernate.engine.SessionFactoryImplementor;
-import org.hibernate.mapping.ForeignKey;
-import org.hibernate.mapping.Index;
-import org.hibernate.mapping.Table;
 import org.hibernate.tool.test.TestHelper;
 
 public abstract class NonReflectiveTestCase extends BaseTestCase {

Modified: trunk/HibernateExt/tools/src/test/org/hibernate/tool/stat/StatisticsBrowserTest.java
===================================================================
--- trunk/HibernateExt/tools/src/test/org/hibernate/tool/stat/StatisticsBrowserTest.java	2006-09-22 12:28:16 UTC (rev 10521)
+++ trunk/HibernateExt/tools/src/test/org/hibernate/tool/stat/StatisticsBrowserTest.java	2006-09-22 12:51:20 UTC (rev 10522)
@@ -1,21 +1,19 @@
 package org.hibernate.tool.stat;
 
 import org.hibernate.Transaction;
-import org.hibernate.cfg.Configuration;
-import org.hibernate.cfg.Environment;
 import org.hibernate.classic.Session;
-import org.hibernate.test.TestCase;
+import org.hibernate.tool.NonReflectiveTestCase;
 
-public class StatisticsBrowserTest extends TestCase {
+public class StatisticsBrowserTest extends NonReflectiveTestCase {
 
 	public StatisticsBrowserTest(String name) {
 		super( name );
 	}
-	
+	/*
 	protected void configure(Configuration cfg) {
 		super.configure( cfg );
 		cfg.setProperty( Environment.USE_STRUCTURED_CACHE, "true" );
-	}
+	}*/
 	
 	public void testBrowser() throws Exception {
 		getSessions().getStatistics().setStatisticsEnabled( true );




More information about the hibernate-commits mailing list