You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
Consider the below scenario:
TestClass1:
TestAA - TestCategory - A, 11
TestAB - TestCategory - A
TestClass2:
TestBB - TestCategory - B, 11
TestBC - TestCategory - B
TestClass3:
TestCC - TestCategory - C, 11
TestCD - TestCategory - C
How to create the TestCaseFilter that will run all the tests that have Categories 11, A, B and C?
In our case, it should run only three tests but it is picking up all the tests with my below filter:
First Approach:
"(TestCategory=11&TestCategory=A)&(TestCategory=11&TestCategory=B)&(TestCategory=11&TestCategory=C)"
Second Approach:
"(TestCategory=11&(TestCategory=A&B&C))"
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Consider the below scenario:
TestClass1:
TestAA - TestCategory - A, 11
TestAB - TestCategory - A
TestClass2:
TestBB - TestCategory - B, 11
TestBC - TestCategory - B
TestClass3:
TestCC - TestCategory - C, 11
TestCD - TestCategory - C
How to create the TestCaseFilter that will run all the tests that have Categories 11, A, B and C?
In our case, it should run only three tests but it is picking up all the tests with my below filter:
First Approach:
"(TestCategory=11&TestCategory=A)&(TestCategory=11&TestCategory=B)&(TestCategory=11&TestCategory=C)"
Second Approach:
"(TestCategory=11&(TestCategory=A&B&C))"
The text was updated successfully, but these errors were encountered: