2022-03-02 17:01:30 +01:00
|
|
|
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
package pgp.wkd.test_suite;
|
|
|
|
|
2022-03-02 18:01:12 +01:00
|
|
|
import java.util.ArrayList;
|
2022-03-02 17:01:30 +01:00
|
|
|
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;
|
|
|
|
}
|
2022-03-02 18:01:12 +01:00
|
|
|
|
|
|
|
public List<TestCase> getTestCases() {
|
|
|
|
return new ArrayList<>(testCases);
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getVersion() {
|
|
|
|
return version;
|
|
|
|
}
|
2022-03-02 17:01:30 +01:00
|
|
|
}
|