Reputation: 505
How does xcode determines that method is uiTest? Look at the pic:
Upvotes: 1
Views: 63
Reputation: 17018
Xcode has two criteria for determining if something is a test.
XCTestCase
test
Note that the class does not need to inherit directly from XCTestCase
, but could be a grandchild. Also note that test
is case sensitive.
Upvotes: 1