How to run a "single test case" in XCTest?

When I click Run MyTest3 in the Xcode Test Navigator, it also launches MyTest1 and MyTest2. Is there a way to run one test case at a time like GHUnitTest?

+4
source share
1 answer

Yes, there is an opportunity to do this.

Step 1:

Test case tab

Step 2:

Run

Step 3:

Status

+6
source

Source: https://habr.com/ru/post/1526118/


All Articles