Add wkd-test-suite module

This commit is contained in:
Paul Schaub 2022-03-02 17:01:30 +01:00
parent 79af7ccab6
commit 049c14b779
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
12 changed files with 677 additions and 2 deletions

View file

@ -0,0 +1,18 @@
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
//
// SPDX-License-Identifier: Apache-2.0
package pgp.wkd.test_suite;
import java.util.List;
public class TestSuite {
final String version;
final List<TestCase> testCases;
public TestSuite(String version, List<TestCase> testCases) {
this.version = version;
this.testCases = testCases;
}
}