Kotlin conversion: AbstractSopCmd

This commit is contained in:
Paul Schaub 2023-11-04 17:20:00 +01:00
parent 256d1c5960
commit 666d51384b
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
3 changed files with 249 additions and 283 deletions

View file

@ -36,7 +36,7 @@ public class AbstractSopCmdTest {
@Test
public void getInput_NullInvalid() {
assertThrows(IllegalArgumentException.class, () -> abstractCmd.getInput(null));
assertThrows(NullPointerException.class, () -> abstractCmd.getInput(null));
}
@Test