File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
testcontainers-dapr/src/test/java/io/dapr/testcontainers Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 5
5
6
6
import static io .dapr .testcontainers .DaprContainerConstants .DAPR_RUNTIME_IMAGE_TAG ;
7
7
import static io .dapr .testcontainers .DaprContainerConstants .DAPR_VERSION ;
8
- import static org .junit .jupiter .api .Assertions .* ;
8
+ import static org .junit .jupiter .api .Assertions .assertEquals ;
9
9
10
10
public class DaprContainerTest {
11
11
@@ -62,7 +62,10 @@ public void appHealthParametersTest(){
62
62
assertEquals (7 , dapr .getAppHealthCheckThreshold ());
63
63
assertEquals ("/test" , dapr .getAppHealthCheckPath ());
64
64
65
+ }
65
66
67
+ @ Test
68
+ public void appHealthParametersDefaultsTest (){
66
69
//Check that the defaults are set by default
67
70
DaprContainer dapr2 = new DaprContainer (DAPR_RUNTIME_IMAGE_TAG )
68
71
.withAppName ("dapr2-app" )
@@ -74,7 +77,5 @@ public void appHealthParametersTest(){
74
77
assertEquals (500 , dapr2 .getAppHealthCheckProbeTimeout ());
75
78
assertEquals (3 , dapr2 .getAppHealthCheckThreshold ());
76
79
77
-
78
-
79
80
}
80
81
}
You can’t perform that action at this time.
0 commit comments