[hibernate-commits] Hibernate SVN: r20275 - in core/trunk/core: src/test/java/org/hibernate/jmx and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Fri Aug 27 06:48:39 EDT 2010


Author: steve.ebersole at jboss.com
Date: 2010-08-27 06:48:39 -0400 (Fri, 27 Aug 2010)
New Revision: 20275

Modified:
   core/trunk/core/pom.xml
   core/trunk/core/src/test/java/org/hibernate/jmx/TrivialTest.java
Log:
HHH-1189 - interfaces for Proxies are not regonized as interfaces


Modified: core/trunk/core/pom.xml
===================================================================
--- core/trunk/core/pom.xml	2010-08-27 06:22:01 UTC (rev 20274)
+++ core/trunk/core/pom.xml	2010-08-27 10:48:39 UTC (rev 20275)
@@ -129,6 +129,19 @@
     </dependencies>
 
     <build>
+        <testResources>
+            <testResource>
+                <filtering>false</filtering>
+                <directory>src/test/java</directory>
+                <includes>
+                    <include>**/*.xml</include>
+                </includes>
+            </testResource>
+            <testResource>
+                <filtering>true</filtering>
+                <directory>src/test/resources</directory>
+            </testResource>
+        </testResources>
         <plugins>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>

Modified: core/trunk/core/src/test/java/org/hibernate/jmx/TrivialTest.java
===================================================================
--- core/trunk/core/src/test/java/org/hibernate/jmx/TrivialTest.java	2010-08-27 06:22:01 UTC (rev 20274)
+++ core/trunk/core/src/test/java/org/hibernate/jmx/TrivialTest.java	2010-08-27 10:48:39 UTC (rev 20275)
@@ -1,11 +1,36 @@
+/*
+ * Hibernate, Relational Persistence for Idiomatic Java
+ *
+ * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
+ * indicated by the @author tags or express copyright attribution
+ * statements applied by the authors.  All third-party contributions are
+ * distributed under license by Red Hat Inc.
+ *
+ * This copyrighted material is made available to anyone wishing to use, modify,
+ * copy, or redistribute it subject to the terms and conditions of the GNU
+ * Lesser General Public License, as published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
+ * for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this distribution; if not, write to:
+ * Free Software Foundation, Inc.
+ * 51 Franklin Street, Fifth Floor
+ * Boston, MA  02110-1301  USA
+ */
 package org.hibernate.jmx;
 
+import junit.framework.TestCase;
+
 /**
  * Test copied over from o.h.t.legacy.FooBarTest
  *
  * @author Steve Ebersole
  */
-public class TrivialTest {
+public class TrivialTest extends TestCase {
 	public void testService() throws Exception {
 		HibernateService hs = new HibernateService();
 		hs.setJndiName( "SessionFactory" );



More information about the hibernate-commits mailing list