*/
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;
*
* @author Erik Brakkee
*/
+@Ignore
public class HibernateGroupSetTest extends InMemoryGroupSetTest {
private static final String GROUP_TABLE = "GROUPS";
* @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));
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
+import org.junit.Ignore;
import org.wamblee.cache.EhCache;
*
* @author Erik Brakkee
*/
+@Ignore
public class HibernateUserAdministrationTest extends UserAdministrationImplTest {
private static final Log LOG = LogFactory
.getLog(HibernateUserAdministrationTest.class);
*/
package org.wamblee.usermgt.hibernate;
+import org.junit.Ignore;
import org.wamblee.cache.EhCache;
import org.wamblee.system.adapters.DefaultContainer;
*
* @author Erik Brakkee
*/
+@Ignore
public class HibernateUserSetTest extends InMemoryUserSetTest {
private static final String USER_TABLE = "USERS";