1
0
Fork 0
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:
Paul Schaub 2023-05-03 15:59:21 +02:00
parent 64c6d7a904
commit 1d26751b45
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -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));
}
}