Experimental feature for testing WKDCli against wkd-test-suite

This commit is contained in:
Paul Schaub 2022-03-02 18:01:12 +01:00
parent 049c14b779
commit cd3f36e26a
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
9 changed files with 159 additions and 11 deletions

View file

@ -24,4 +24,28 @@ public class TestCase {
this.certificatePath = certificatePath.toString();
this.lookupUri = lookupUri;
}
public boolean isExpectSuccess() {
return expectSuccess;
}
public String getTestTitle() {
return testTitle;
}
public String getTestDescription() {
return testDescription;
}
public String getLookupMailAddress() {
return lookupMailAddress;
}
public String getCertificatePath() {
return certificatePath;
}
public URI getLookupUri() {
return lookupUri;
}
}

View file

@ -4,6 +4,7 @@
package pgp.wkd.test_suite;
import java.util.ArrayList;
import java.util.List;
public class TestSuite {
@ -15,4 +16,12 @@ public class TestSuite {
this.version = version;
this.testCases = testCases;
}
public List<TestCase> getTestCases() {
return new ArrayList<>(testCases);
}
public String getVersion() {
return version;
}
}