|
16 | 16 | */ |
17 | 17 | package org.jboss.arquillian.spring.testsuite.test; |
18 | 18 |
|
| 19 | +import static org.junit.Assert.assertEquals; |
| 20 | +import static org.junit.Assert.assertNotNull; |
| 21 | + |
| 22 | +import java.io.BufferedReader; |
| 23 | +import java.io.IOException; |
| 24 | +import java.io.InputStream; |
| 25 | +import java.io.InputStreamReader; |
| 26 | +import java.util.List; |
| 27 | + |
| 28 | +import javax.persistence.EntityManager; |
| 29 | +import javax.persistence.PersistenceContext; |
| 30 | + |
19 | 31 | import org.jboss.arquillian.container.test.api.Deployment; |
20 | 32 | import org.jboss.arquillian.junit.Arquillian; |
21 | 33 | import org.jboss.arquillian.spring.integration.test.annotation.SpringConfiguration; |
|
24 | 36 | import org.jboss.arquillian.transaction.api.annotation.Transactional; |
25 | 37 | import org.jboss.shrinkwrap.api.Archive; |
26 | 38 | import org.junit.After; |
| 39 | +import org.junit.Ignore; |
27 | 40 | import org.junit.Test; |
28 | 41 | import org.junit.runner.RunWith; |
29 | 42 | import org.springframework.beans.factory.annotation.Autowired; |
30 | 43 | import org.springframework.beans.factory.annotation.Qualifier; |
31 | 44 |
|
32 | | -import javax.persistence.EntityManager; |
33 | | -import javax.persistence.PersistenceContext; |
34 | | -import java.io.BufferedReader; |
35 | | -import java.io.IOException; |
36 | | -import java.io.InputStream; |
37 | | -import java.io.InputStreamReader; |
38 | | -import java.util.List; |
39 | | - |
40 | | -import static org.junit.Assert.assertEquals; |
41 | | -import static org.junit.Assert.assertNotNull; |
42 | | - |
43 | 45 | /** |
44 | 46 | * <p>Tests the {@link org.jboss.arquillian.spring.testsuite.beans.repository.impl.JpaEmployeeRepository} class.</p> |
45 | 47 | * |
46 | 48 | * @author <a href="mailto:[email protected]">Jakub Narloch</a> |
47 | 49 | */ |
| 50 | +@Ignore // ARQ-1805 - temp |
48 | 51 | @RunWith(Arquillian.class) |
49 | 52 | @Transactional(manager = "txManager") |
50 | 53 | @SpringConfiguration("applicationContext-jpa.xml") |
|
0 commit comments