Browse Source

Disable tx annotated tests until working within the build

Issue: SPR-9051
pull/64/merge
Sam Brannen 14 years ago
parent
commit
2017b24867
  1. 2
      spring-test/src/test/java/org/springframework/test/context/junit4/spr9051/TransactionalAnnotatedConfigClassWithAtConfigurationTests.java
  2. 5
      spring-test/src/test/java/org/springframework/test/context/junit4/spr9051/TransactionalAnnotatedConfigClassesWithoutAtConfigurationTests.java

2
spring-test/src/test/java/org/springframework/test/context/junit4/spr9051/TransactionalAnnotatedConfigClassWithAtConfigurationTests.java

@ -21,6 +21,7 @@ import static org.junit.Assert.assertSame; @@ -21,6 +21,7 @@ import static org.junit.Assert.assertSame;
import javax.sql.DataSource;
import org.junit.Before;
import org.junit.Ignore;
import org.springframework.beans.Employee;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@ -37,6 +38,7 @@ import org.springframework.transaction.PlatformTransactionManager; @@ -37,6 +38,7 @@ import org.springframework.transaction.PlatformTransactionManager;
* @since 3.2
* @see TransactionalAnnotatedConfigClassesWithoutAtConfigurationTests
*/
@Ignore("Disabled until working within the build")
@ContextConfiguration
public class TransactionalAnnotatedConfigClassWithAtConfigurationTests extends
AbstractTransactionalAnnotatedConfigClassTests {

5
spring-test/src/test/java/org/springframework/test/context/junit4/spr9051/TransactionalAnnotatedConfigClassesWithoutAtConfigurationTests.java

@ -22,7 +22,7 @@ import static org.junit.Assert.assertNotSame; @@ -22,7 +22,7 @@ import static org.junit.Assert.assertNotSame;
import javax.sql.DataSource;
import org.junit.Before;
import org.junit.runner.RunWith;
import org.junit.Ignore;
import org.springframework.beans.Employee;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
@ -30,7 +30,6 @@ import org.springframework.jdbc.core.JdbcTemplate; @@ -30,7 +30,6 @@ import org.springframework.jdbc.core.JdbcTemplate;
import org.springframework.jdbc.datasource.DataSourceTransactionManager;
import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseBuilder;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.transaction.AfterTransaction;
import org.springframework.test.context.transaction.TransactionalTestExecutionListener;
import org.springframework.transaction.PlatformTransactionManager;
@ -46,7 +45,7 @@ import org.springframework.transaction.PlatformTransactionManager; @@ -46,7 +45,7 @@ import org.springframework.transaction.PlatformTransactionManager;
* @see Bean
* @see TransactionalAnnotatedConfigClassWithAtConfigurationTests
*/
@RunWith(SpringJUnit4ClassRunner.class)
@Ignore("Disabled until working within the build")
@ContextConfiguration(classes = TransactionalAnnotatedConfigClassesWithoutAtConfigurationTests.AnnotatedFactoryBeans.class)
public class TransactionalAnnotatedConfigClassesWithoutAtConfigurationTests extends
AbstractTransactionalAnnotatedConfigClassTests {

Loading…
Cancel
Save