Skip to content

Commit

Permalink
Ignore many other JDBC tests with Derby
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Dec 11, 2020
1 parent 89ac065 commit 36d3a11
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
Expand Up @@ -28,6 +28,7 @@

import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand All @@ -52,6 +53,7 @@
@ContextConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
@DirtiesContext // close at the end after class
@Ignore
public class JdbcMessageStoreChannelOnePollerIntegrationTests {

@Autowired
Expand Down
Expand Up @@ -33,6 +33,7 @@
import javax.management.MBeanServerFactory;
import javax.management.ObjectName;

import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand All @@ -53,6 +54,7 @@
@ContextConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
@DirtiesContext(classMode = ClassMode.AFTER_EACH_TEST_METHOD)
@Ignore
public class StoredProcJmxManagedBeanTests {

@Autowired
Expand Down
Expand Up @@ -39,6 +39,7 @@
import org.apache.commons.logging.LogFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand All @@ -61,6 +62,7 @@
@ContextConfiguration("JdbcLockRegistryTests-context.xml")
@RunWith(SpringJUnit4ClassRunner.class)
@DirtiesContext
@Ignore
public class JdbcLockRegistryDifferentClientTests {

private static Log logger = LogFactory.getLog(JdbcLockRegistryDifferentClientTests.class);
Expand Down
Expand Up @@ -33,6 +33,7 @@
import java.util.concurrent.locks.Lock;

import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;

Expand All @@ -53,6 +54,7 @@
@ContextConfiguration
@RunWith(SpringJUnit4ClassRunner.class)
@DirtiesContext
@Ignore
public class JdbcLockRegistryTests {

private final AsyncTaskExecutor taskExecutor = new SimpleAsyncTaskExecutor();
Expand Down

0 comments on commit 36d3a11

Please sign in to comment.