mirror of
https://github.com/pgpainless/pgpainless.git
synced 2024-11-25 22:02:05 +01:00
Remove unused KeyRingEditorTest
This commit is contained in:
parent
64c6d7a904
commit
1d26751b45
1 changed files with 0 additions and 19 deletions
|
@ -1,19 +0,0 @@
|
|||
// SPDX-FileCopyrightText: 2020 Paul Schaub <vanitasvitae@fsfe.org>
|
||||
//
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
package org.pgpainless.key.modification;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.pgpainless.key.modification.secretkeyring.SecretKeyRingEditor;
|
||||
|
||||
public class KeyRingEditorTest {
|
||||
|
||||
@Test
|
||||
public void testConstructorThrowsNpeForNull() {
|
||||
assertThrows(NullPointerException.class,
|
||||
() -> new SecretKeyRingEditor(null));
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue