File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
client/src/test/java/io/dapr/durabletask Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 3
3
4
4
package io .dapr .durabletask ;
5
5
6
- import org .junit .jupiter .api .Tag ;
7
- import org .junit .jupiter .api .Test ;
8
- import org .junit .jupiter .params .ParameterizedTest ;
9
- import org .junit .jupiter .params .provider .ValueSource ;
10
- import org .junit .jupiter .api .extension .ExtendWith ;
6
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
7
+ import static org .junit .jupiter .api .Assertions .assertNotNull ;
8
+ import static org .junit .jupiter .api .Assertions .assertTrue ;
11
9
12
10
import java .time .Duration ;
13
11
import java .util .concurrent .TimeoutException ;
14
12
import java .util .concurrent .atomic .AtomicBoolean ;
15
13
import java .util .concurrent .atomic .AtomicInteger ;
16
14
17
15
import org .junit .jupiter .api .BeforeEach ;
18
- import static org .junit .jupiter .api .Assertions .*;
16
+ import org .junit .jupiter .api .Tag ;
17
+ import org .junit .jupiter .api .extension .ExtendWith ;
18
+ import org .junit .jupiter .params .provider .ValueSource ;
19
19
20
20
/**
21
21
* These integration tests are designed to exercise the core, high-level error-handling features of the Durable Task
29
29
public class ErrorHandlingIntegrationTests extends IntegrationTestBase {
30
30
@ BeforeEach
31
31
private void startUp () {
32
- DurableTaskClient client = new DurableTaskGrpcClientBuilder ().build ();
33
- client .deleteTaskHub ();
34
32
}
35
33
36
34
@ RetryingTest
You can’t perform that action at this time.
0 commit comments