mirror of
https://codeberg.org/PGPainless/wkd-java.git
synced 2025-09-10 11:49:39 +02:00
Add wkd-test-suite module
This commit is contained in:
parent
79af7ccab6
commit
049c14b779
12 changed files with 677 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue