mirror of
https://github.com/Alfresco/SearchServices.git
synced 2026-09-16 18:12:56 +00:00
[SEARCH-1641]
Added test groups - EXPLICIT_SHARDING - NOT_BAMBOO for saying that a test should not be run on bamboo
This commit is contained in:
@@ -10,20 +10,24 @@ import java.lang.annotation.Target;
|
||||
public @interface TestGroup
|
||||
{
|
||||
// Used for TestRail test annotation
|
||||
public static final String SEARCH = "search";
|
||||
public static final String REST_API = "rest-api";
|
||||
String SEARCH = "search";
|
||||
String REST_API = "rest-api";
|
||||
|
||||
public static final String PREUPGRADE = "pre-upgrade";
|
||||
public static final String POSTUPGRADE = "post-upgrade";
|
||||
String PREUPGRADE = "pre-upgrade";
|
||||
String POSTUPGRADE = "post-upgrade";
|
||||
|
||||
public static final String ASS_MASTER_SLAVE = "ASS_Master_Slave"; // Alfresco Search Services using master slave configurations
|
||||
public static final String ASS_MASTER ="ASS_Master"; // Alfresco search services using master/stand alone mode
|
||||
String ASS_MASTER_SLAVE = "ASS_Master_Slave"; // Alfresco Search Services using master slave configurations
|
||||
String ASS_MASTER ="ASS_Master"; // Alfresco search services using master/stand alone mode
|
||||
String EXPLICIT_SHARDING ="Explicit_Sharding"; // Alfresco search services using sharded environment and explicit routing
|
||||
|
||||
String NOT_INSIGHT_ENGINE = "Not_InsightEngine"; // When Alfresco Insight Engine 1.0 isn't running
|
||||
|
||||
public static final String NOT_INSIGHT_ENGINE = "Not_InsightEngine"; // When Alfresco Insight Engine 1.0 isn't running
|
||||
|
||||
public static final String ACS_52n = "ACS_52n"; // Alfresco Content Services 5.2.n
|
||||
public static final String ACS_60n = "ACS_60n"; // Alfresco Content Services 6.0 or above
|
||||
public static final String ACS_61n = "ACS_61n"; // Alfresco Content Services 6.1 or above
|
||||
public static final String ACS_611n = "ACS_611n"; // Alfresco Content Services 6.1.1 or above
|
||||
public static final String ACS_62n = "ACS_62n"; // Alfresco Content Services 6.2 or above
|
||||
String ACS_52n = "ACS_52n"; // Alfresco Content Services 5.2.n
|
||||
String ACS_60n = "ACS_60n"; // Alfresco Content Services 6.0 or above
|
||||
String ACS_61n = "ACS_61n"; // Alfresco Content Services 6.1 or above
|
||||
String ACS_611n = "ACS_611n"; // Alfresco Content Services 6.1.1 or above
|
||||
String ACS_62n = "ACS_62n"; // Alfresco Content Services 6.2 or above
|
||||
|
||||
String NOT_BAMBOO = "Not_Bamboo"; // The does not run on bamboo
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user