Skip to content

Commit dfef944

Browse files
chore: add tests coverage
1 parent 67761ff commit dfef944

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/test/java/ch/sbb/polarion/extension/generic/configuration/GenericPolarionStatusProviderTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ public static Stream<Arguments> provideConfigurationStatus() {
2020
Arguments.of("2410.1", "2410", configurationStatus(Status.OK, "2410.1")),
2121
Arguments.of("2310", "2410", configurationStatus(Status.WARNING, "2310 is not officially supported")),
2222
Arguments.of("2310.1", "2410", configurationStatus(Status.WARNING, "2310.1 is not officially supported")),
23-
Arguments.of("2410", "", configurationStatus(Status.ERROR, "Officially supported version not specified"))
23+
Arguments.of("2410", "", configurationStatus(Status.ERROR, "Officially supported version not specified")),
24+
Arguments.of("2410", null, configurationStatus(Status.ERROR, "Officially supported version not specified"))
2425
);
2526
}
2627

0 commit comments

Comments
 (0)