@@ -59,60 +59,60 @@ protected void setUp() throws IOException {
5959 "confirm-multiple-queues" );
6060 }
6161
62- public void testConfirmTransient ()
62+ public void testTransient ()
6363 throws IOException , InterruptedException {
6464 confirmTest ("" , "confirm-test" , false , false , false );
6565 }
6666
67- public void testConfirmPersistentSimple ()
67+ public void testPersistentSimple ()
6868 throws IOException , InterruptedException
6969 {
7070 confirmTest ("" , "confirm-test" , true , false , false );
7171 }
7272
73- public void testConfirmNonDurable ()
73+ public void testNonDurable ()
7474 throws IOException , InterruptedException
7575 {
7676 confirmTest ("" , "confirm-test-nondurable" , true , false , false );
7777 }
7878
79- public void testConfirmPersistentImmediate ()
79+ public void testPersistentImmediate ()
8080 throws IOException , InterruptedException
8181 {
8282 confirmTest ("" , "confirm-test" , true , false , true );
8383 }
8484
85- public void testConfirmPersistentImmediateNoConsumer ()
85+ public void testPersistentImmediateNoConsumer ()
8686 throws IOException , InterruptedException
8787 {
8888 confirmTest ("" , "confirm-test-noconsumer" , true , false , true );
8989 }
9090
91- public void testConfirmPersistentMandatory ()
91+ public void testPersistentMandatory ()
9292 throws IOException , InterruptedException
9393 {
9494 confirmTest ("" , "confirm-test" , true , true , false );
9595 }
9696
97- public void testConfirmPersistentMandatoryReturn ()
97+ public void testPersistentMandatoryReturn ()
9898 throws IOException , InterruptedException
9999 {
100100 confirmTest ("" , "confirm-test-doesnotexist" , true , true , false );
101101 }
102102
103- public void testConfirmMultipleQueues ()
103+ public void testMultipleQueues ()
104104 throws IOException , InterruptedException
105105 {
106106 confirmTest ("amq.direct" , "confirm-multiple-queues" ,
107107 true , false , false );
108108 }
109109
110- /* For testConfirmQueueDelete and testConfirmQueuePurge to be
110+ /* For testQueueDelete and testQueuePurge to be
111111 * relevant, the msg_store must not write the messages to disk
112112 * (thus causing a confirm). I'd manually comment out the line in
113113 * internal_sync that notifies the clients. */
114114
115- public void testConfirmQueueDelete ()
115+ public void testQueueDelete ()
116116 throws IOException , InterruptedException
117117 {
118118 publishN ("" ,"confirm-test-noconsumer" , true , false , false );
@@ -122,7 +122,7 @@ public void testConfirmQueueDelete()
122122 waitAcks ();
123123 }
124124
125- public void testConfirmQueuePurge ()
125+ public void testQueuePurge ()
126126 throws IOException , InterruptedException
127127 {
128128 publishN ("" , "confirm-test-noconsumer" , true , false , false );
@@ -132,23 +132,23 @@ public void testConfirmQueuePurge()
132132 waitAcks ();
133133 }
134134
135- public void testConfirmBasicReject ()
135+ public void testBasicReject ()
136136 throws IOException , InterruptedException
137137 {
138138 basicRejectCommon (false );
139139
140140 waitAcks ();
141141 }
142142
143- public void testConfirmQueueTTL ()
143+ public void testQueueTTL ()
144144 throws IOException , InterruptedException
145145 {
146146 publishN ("" , "confirm-ttl" , true , false , false );
147147
148148 waitAcks ();
149149 }
150150
151- public void testConfirmBasicRejectRequeue ()
151+ public void testBasicRejectRequeue ()
152152 throws IOException , InterruptedException
153153 {
154154 basicRejectCommon (true );
@@ -162,7 +162,7 @@ public void testConfirmBasicRejectRequeue()
162162 waitAcks ();
163163 }
164164
165- public void testConfirmBasicRecover ()
165+ public void testBasicRecover ()
166166 throws IOException , InterruptedException
167167 {
168168 publishN ("" , "confirm-test-noconsumer" , true , false , false );
@@ -184,7 +184,7 @@ public void testConfirmBasicRecover()
184184 waitAcks ();
185185 }
186186
187- public void testConfirmSelect ()
187+ public void testSelect ()
188188 throws IOException
189189 {
190190 try {
0 commit comments