2525 * client operations and sends invocation instructions to the DurableTaskWorker).
2626 */
2727@ Tag ("integration" )
28- @ ExtendWith (TestRetryExtension .class )
2928public class ErrorHandlingIntegrationTests extends IntegrationTestBase {
29+
3030 @ BeforeEach
3131 private void startUp () {
3232 }
3333
34- @ RetryingTest
34+ @ Test
3535 void orchestratorException () throws TimeoutException {
3636 final String orchestratorName = "OrchestratorWithException" ;
3737 final String errorMessage = "Kah-BOOOOOM!!!" ;
@@ -57,7 +57,7 @@ void orchestratorException() throws TimeoutException {
5757 }
5858 }
5959
60- @ RetryingParameterizedTest
60+ @ ParameterizedTest
6161 @ ValueSource (booleans = {true , false })
6262 void activityException (boolean handleException ) throws TimeoutException {
6363 final String orchestratorName = "OrchestratorWithActivityException" ;
@@ -109,7 +109,7 @@ void activityException(boolean handleException) throws TimeoutException {
109109 }
110110 }
111111
112- @ RetryingParameterizedTest
112+ @ ParameterizedTest
113113 @ ValueSource (ints = {1 , 2 , 10 })
114114 public void retryActivityFailures (int maxNumberOfAttempts ) throws TimeoutException {
115115 // There is one task for each activity call and one task between each retry
@@ -123,7 +123,7 @@ public void retryActivityFailures(int maxNumberOfAttempts) throws TimeoutExcepti
123123 });
124124 }
125125
126- @ RetryingParameterizedTest
126+ @ ParameterizedTest
127127 @ ValueSource (ints = {1 , 2 , 10 })
128128 public void retryActivityFailuresWithCustomLogic (int maxNumberOfAttempts ) throws TimeoutException {
129129 // This gets incremented every time the retry handler is invoked
@@ -140,7 +140,7 @@ public void retryActivityFailuresWithCustomLogic(int maxNumberOfAttempts) throws
140140 assertEquals (maxNumberOfAttempts , retryHandlerCalls .get ());
141141 }
142142
143- @ RetryingParameterizedTest
143+ @ ParameterizedTest
144144 @ ValueSource (booleans = {true , false })
145145 void subOrchestrationException (boolean handleException ) throws TimeoutException {
146146 final String orchestratorName = "OrchestrationWithBustedSubOrchestrator" ;
@@ -190,7 +190,7 @@ void subOrchestrationException(boolean handleException) throws TimeoutException
190190 }
191191 }
192192
193- @ RetryingParameterizedTest
193+ @ ParameterizedTest
194194 @ ValueSource (ints = {1 , 2 , 10 })
195195 public void retrySubOrchestratorFailures (int maxNumberOfAttempts ) throws TimeoutException {
196196 // There is one task for each sub-orchestrator call and one task between each retry
@@ -205,7 +205,7 @@ public void retrySubOrchestratorFailures(int maxNumberOfAttempts) throws Timeout
205205 });
206206 }
207207
208- @ RetryingParameterizedTest
208+ @ ParameterizedTest
209209 @ ValueSource (ints = {1 , 2 , 10 })
210210 public void retrySubOrchestrationFailuresWithCustomLogic (int maxNumberOfAttempts ) throws TimeoutException {
211211 // This gets incremented every time the retry handler is invoked
0 commit comments