SEARCH-1743 removed the queries group from tests and test group class

This commit is contained in:
Keerat Lalia
2019-07-12 15:02:57 +01:00
parent 5df43bfd27
commit 23bd7fea65
2 changed files with 5 additions and 7 deletions
@@ -18,8 +18,6 @@ public @interface TestGroup
public static final String CMIS = "cmis";
public static final String REST_API = "rest-api";
public static String QUERIES = "queries";
public static final String PREUPGRADE = "pre-upgrade";
public static final String POSTUPGRADE = "post-upgrade";
@@ -62,7 +62,7 @@ public class SolrSearchScoreQueryTests extends AbstractCmisE2ETest
* Verify that results are ordered
* @throws Exception
*/
@Test(groups = { TestGroup.ASS_14, TestGroup.QUERIES }, dependsOnMethods = "prepareDataForScoreSearch")
@Test(groups = { TestGroup.ASS_14 }, dependsOnMethods = "prepareDataForScoreSearch")
public void scoreQueryOrdered() throws Exception
{
@@ -88,7 +88,7 @@ public class SolrSearchScoreQueryTests extends AbstractCmisE2ETest
* Verify that results are inverse ordered
* @throws Exception
*/
@Test(groups = { TestGroup.ASS_14, TestGroup.QUERIES }, dependsOnMethods = "prepareDataForScoreSearch")
@Test(groups = { TestGroup.ASS_14 }, dependsOnMethods = "prepareDataForScoreSearch")
public void scoreQueryOrderedDesc() throws Exception
{
@@ -113,7 +113,7 @@ public class SolrSearchScoreQueryTests extends AbstractCmisE2ETest
* Verify that all SCORE results are between 0 and 1
* @throws Exception
*/
@Test(groups = { TestGroup.ASS_14, TestGroup.QUERIES, TestGroup.ACS_62n }, dependsOnMethods = "prepareDataForScoreSearch")
@Test(groups = { TestGroup.ASS_14, TestGroup.ACS_62n }, dependsOnMethods = "prepareDataForScoreSearch")
public void scoreQueryInRange() throws Exception
{
@@ -138,7 +138,7 @@ public class SolrSearchScoreQueryTests extends AbstractCmisE2ETest
* Verify that all SCORE results are between 0 and 1
* @throws Exception
*/
@Test(groups = { TestGroup.ASS_14, TestGroup.QUERIES, TestGroup.ACS_62n }, dependsOnMethods = "prepareDataForScoreSearch")
@Test(groups = { TestGroup.ASS_14, TestGroup.ACS_62n }, dependsOnMethods = "prepareDataForScoreSearch")
public void scoreQueryAliasInRange() throws Exception
{
@@ -164,7 +164,7 @@ public class SolrSearchScoreQueryTests extends AbstractCmisE2ETest
* Currently only supported with double quotes
* @throws Exception
*/
@Test(groups = { TestGroup.ASS_14, TestGroup.QUERIES }, dependsOnMethods = "prepareDataForScoreSearch")
@Test(groups = { TestGroup.ASS_14 }, dependsOnMethods = "prepareDataForScoreSearch")
public void scoreQueryScoreAsAlias() throws Exception
{