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 55
66import static io .dapr .testcontainers .DaprContainerConstants .DAPR_RUNTIME_IMAGE_TAG ;
77import static io .dapr .testcontainers .DaprContainerConstants .DAPR_VERSION ;
8- import static org .junit .jupiter .api .Assertions .* ;
8+ import static org .junit .jupiter .api .Assertions .assertEquals ;
99
1010public class DaprContainerTest {
1111
@@ -62,7 +62,10 @@ public void appHealthParametersTest(){
6262 assertEquals (7 , dapr .getAppHealthCheckThreshold ());
6363 assertEquals ("/test" , dapr .getAppHealthCheckPath ());
6464
65+ }
6566
67+ @ Test
68+ public void appHealthParametersDefaultsTest (){
6669 //Check that the defaults are set by default
6770 DaprContainer dapr2 = new DaprContainer (DAPR_RUNTIME_IMAGE_TAG )
6871 .withAppName ("dapr2-app" )
@@ -74,7 +77,5 @@ public void appHealthParametersTest(){
7477 assertEquals (500 , dapr2 .getAppHealthCheckProbeTimeout ());
7578 assertEquals (3 , dapr2 .getAppHealthCheckThreshold ());
7679
77-
78-
7980 }
8081}
You can’t perform that action at this time.
0 commit comments