com.yahoo.vespa.hosted.testrunner.TestProfile Maven / Gradle / Ivy
package com.yahoo.vespa.hosted.testrunner;
/**
* @author valerijf
* @author jvenstad
*/
enum TestProfile {
SYSTEM_TEST("ai.vespa.hosted.cd.SystemTest, com.yahoo.vespa.tenant.systemtest.base.SystemTest", true),
STAGING_TEST("ai.vespa.hosted.cd.StagingTest, com.yahoo.vespa.tenant.systemtest.base.StagingTest", true),
PRODUCTION_TEST("ai.vespa.hosted.cd.ProductionTest, com.yahoo.vespa.tenant.systemtest.base.ProductionTest", false);
private final String group;
private final boolean failIfNoTests;
TestProfile(String group, boolean failIfNoTests) {
this.group = group;
this.failIfNoTests = failIfNoTests;
}
String group() {
return group;
}
boolean failIfNoTests() {
return failIfNoTests;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy