mirror of
https://codeberg.org/PGPainless/wkd-java.git
synced 2024-11-15 20:42:05 +01:00
27 lines
579 B
Java
27 lines
579 B
Java
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package pgp.wkd.test_suite;
|
|
|
|
import java.util.ArrayList;
|
|
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;
|
|
}
|
|
|
|
public List<TestCase> getTestCases() {
|
|
return new ArrayList<>(testCases);
|
|
}
|
|
|
|
public String getVersion() {
|
|
return version;
|
|
}
|
|
}
|