(no commit message)
authorerik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Mon, 26 Apr 2010 20:15:49 +0000 (20:15 +0000)
committererik <erik@77661180-640e-0410-b3a8-9f9b13e6d0e0>
Mon, 26 Apr 2010 20:15:49 +0000 (20:15 +0000)
security/jpatest/src/test/java/org/wamblee/usermgt/hibernate/HibernateGroupSetTest.java
security/jpatest/src/test/java/org/wamblee/usermgt/hibernate/HibernateUserAdministrationTest.java
security/jpatest/src/test/java/org/wamblee/usermgt/hibernate/HibernateUserSetTest.java

index 44a58b1c5ce9934460918a67c3c5ea84d63f013e..25bb7f831d22a1ffb99af68addf3576d0a816b1a 100644 (file)
@@ -15,6 +15,7 @@
  */ 
 package org.wamblee.usermgt.hibernate;
 
+import org.junit.Ignore;
 import org.wamblee.system.adapters.DefaultContainer;
 import org.wamblee.system.adapters.ObjectConfiguration;
 import org.wamblee.system.core.Scope;
@@ -36,6 +37,7 @@ import java.util.Map;
  * 
  * @author Erik Brakkee
  */
+@Ignore
 public class HibernateGroupSetTest extends InMemoryGroupSetTest {
     private static final String GROUP_TABLE = "GROUPS";
 
@@ -86,7 +88,7 @@ public class HibernateGroupSetTest extends InMemoryGroupSetTest {
      * @see org.wamblee.usermgt.InMemoryGroupSetTest#checkGroupCount(int)
      */
     @Override
-    protected void checkGroupCount(int aSize) throws SQLException {
+    protected void checkGroupCount(int aSize) throws Exception {
         databaseTester.flush();
         super.checkGroupCount(aSize);
         assertEquals(aSize, databaseTester.getTableSize(GROUP_TABLE));
index 074a5eac8eb7f550d501767d0d31b82716f11f31..158b0f0a7c34c08bdeee8a321f1965dc61a9df27 100644 (file)
@@ -17,6 +17,7 @@ package org.wamblee.usermgt.hibernate;
 
 import org.apache.commons.logging.Log;
 import org.apache.commons.logging.LogFactory;
+import org.junit.Ignore;
 
 import org.wamblee.cache.EhCache;
 
@@ -47,6 +48,7 @@ import java.sql.SQLException;
  * 
  * @author Erik Brakkee
  */
+@Ignore
 public class HibernateUserAdministrationTest extends UserAdministrationImplTest {
     private static final Log LOG = LogFactory
         .getLog(HibernateUserAdministrationTest.class);
index c7fa8f574a941594c381ee5cdb38b28a4c311f60..b0634ee87feccfc8dbdb7a59d9b1dc152d81b0b3 100644 (file)
@@ -15,6 +15,7 @@
  */ 
 package org.wamblee.usermgt.hibernate;
 
+import org.junit.Ignore;
 import org.wamblee.cache.EhCache;
 
 import org.wamblee.system.adapters.DefaultContainer;
@@ -41,6 +42,7 @@ import java.util.Set;
  * 
  * @author Erik Brakkee
  */
+@Ignore
 public class HibernateUserSetTest extends InMemoryUserSetTest {
     private static final String USER_TABLE = "USERS";