|
16 | 16 | */ |
17 | 17 | package org.apache.activemq.network; |
18 | 18 |
|
19 | | -import static org.junit.Assert.assertEquals; |
20 | | -import static org.junit.Assert.assertTrue; |
21 | | - |
22 | | -import java.io.File; |
23 | | -import java.net.URI; |
24 | | -import java.util.ArrayList; |
25 | | -import java.util.Arrays; |
26 | | -import java.util.Collection; |
27 | | -import java.util.List; |
28 | | -import java.util.concurrent.TimeUnit; |
29 | | - |
30 | 19 | import jakarta.jms.Message; |
31 | 20 | import jakarta.jms.MessageConsumer; |
32 | 21 | import jakarta.jms.MessageProducer; |
33 | 22 | import jakarta.jms.Session; |
34 | | - |
35 | 23 | import org.apache.activemq.ActiveMQConnectionFactory; |
36 | 24 | import org.apache.activemq.advisory.AdvisoryBroker; |
37 | 25 | import org.apache.activemq.broker.BrokerPlugin; |
|
50 | 38 | import org.apache.activemq.store.kahadb.disk.journal.Journal.JournalDiskSyncStrategy; |
51 | 39 | import org.apache.activemq.util.Wait; |
52 | 40 | import org.apache.activemq.util.Wait.Condition; |
53 | | -import org.apache.activemq.test.annotations.ParallelTest; |
54 | 41 | import org.junit.After; |
55 | 42 | import org.junit.Assume; |
56 | 43 | import org.junit.Before; |
|
60 | 47 | import org.junit.runner.RunWith; |
61 | 48 | import org.junit.runners.Parameterized; |
62 | 49 | import org.junit.runners.Parameterized.Parameters; |
63 | | -import org.junit.experimental.categories.Category; |
64 | 50 | import org.slf4j.Logger; |
65 | 51 | import org.slf4j.LoggerFactory; |
66 | 52 |
|
| 53 | +import java.io.File; |
| 54 | +import java.net.URI; |
| 55 | +import java.util.ArrayList; |
| 56 | +import java.util.Arrays; |
| 57 | +import java.util.Collection; |
| 58 | +import java.util.List; |
| 59 | +import java.util.concurrent.TimeUnit; |
| 60 | + |
| 61 | +import static org.junit.Assert.assertEquals; |
| 62 | +import static org.junit.Assert.assertTrue; |
| 63 | + |
67 | 64 | @RunWith(Parameterized.class) |
68 | | -@Category(ParallelTest.class) |
69 | 65 | public class DurableSyncNetworkBridgeTest extends DynamicNetworkTestSupport { |
70 | 66 |
|
71 | 67 | protected static final Logger LOG = LoggerFactory.getLogger(DurableSyncNetworkBridgeTest.class); |
|
0 commit comments