Disable a Test ‘func testBusinessLogic()’
Dec 11, 2020
XCode scans your all methods written in your test class and tests all which start with ‘test’.
You can be simply disabled just by adding anything before ‘test’.
For example: modify it like this ‘func xyztestBusinessLogic()’ and this test wouldn’t be picked by XCTest.