Initial commit

This commit is contained in:
Paul Schaub 2022-03-01 15:53:24 +01:00
commit d18dfb1ca5
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
21 changed files with 1303 additions and 0 deletions

View file

@ -0,0 +1,17 @@
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package pgp.cert_d.cli;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertTrue;
public class DummyTest {
@Test
public void test() {
assertTrue(true);
}
}