mirror of
https://codeberg.org/PGPainless/wkd-java.git
synced 2024-11-15 20:42:05 +01:00
28 lines
830 B
Java
28 lines
830 B
Java
|
// SPDX-FileCopyrightText: 2022 Paul Schaub <vanitasvitae@fsfe.org>
|
||
|
//
|
||
|
// SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
package pgp.wkd.test_suite;
|
||
|
|
||
|
import java.net.URI;
|
||
|
import java.nio.file.Path;
|
||
|
|
||
|
public class TestCase {
|
||
|
|
||
|
final boolean expectSuccess;
|
||
|
final String testTitle;
|
||
|
final String testDescription;
|
||
|
final String lookupMailAddress;
|
||
|
final String certificatePath;
|
||
|
final URI lookupUri;
|
||
|
|
||
|
public TestCase(boolean expectSuccess, String testTitle, String description, String lookupMailAddress, Path certificatePath, URI lookupUri) {
|
||
|
this.expectSuccess = expectSuccess;
|
||
|
this.testTitle = testTitle;
|
||
|
this.testDescription = description;
|
||
|
this.lookupMailAddress = lookupMailAddress;
|
||
|
this.certificatePath = certificatePath.toString();
|
||
|
this.lookupUri = lookupUri;
|
||
|
}
|
||
|
}
|