Reactivate functional tests

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14355 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Brian Stansberry 2008-02-24 16:26:08 +00:00
parent 00d1e656c4
commit 9c55f3715c
2 changed files with 6 additions and 6 deletions

View File

@ -35,18 +35,18 @@ import org.hibernate.junit.functional.FunctionalTestClassTestSuite;
*
* @author Brian Stansberry
*/
public class OptimisticJBossCacheTestDisabled extends AbstractQueryCacheFunctionalTestCase {
public class OptimisticJBossCacheTest extends AbstractQueryCacheFunctionalTestCase {
// note that a lot of the fucntionality here is intended to be used
// in creating specific tests for each CacheProvider that would extend
// from a base test case (this) for common requirement testing...
public OptimisticJBossCacheTestDisabled(String x) {
public OptimisticJBossCacheTest(String x) {
super(x);
}
public static Test suite() {
return new FunctionalTestClassTestSuite(OptimisticJBossCacheTestDisabled.class);
return new FunctionalTestClassTestSuite(OptimisticJBossCacheTest.class);
}
protected Class<? extends RegionFactory> getCacheRegionFactory() {

View File

@ -35,18 +35,18 @@ import org.hibernate.junit.functional.FunctionalTestClassTestSuite;
*
* @author Brian Stansberry
*/
public class PessimisticJBossCacheTestDisabled extends AbstractQueryCacheFunctionalTestCase {
public class PessimisticJBossCacheTest extends AbstractQueryCacheFunctionalTestCase {
// note that a lot of the fucntionality here is intended to be used
// in creating specific tests for each CacheProvider that would extend
// from a base test case (this) for common requirement testing...
public PessimisticJBossCacheTestDisabled(String x) {
public PessimisticJBossCacheTest(String x) {
super(x);
}
public static Test suite() {
return new FunctionalTestClassTestSuite(PessimisticJBossCacheTestDisabled.class);
return new FunctionalTestClassTestSuite(PessimisticJBossCacheTest.class);
}
protected Class<? extends RegionFactory> getCacheRegionFactory() {