In objective C, we are using like:
XCTFail("%s", __PRETTY_FUNCTION__);
what is the replacement of this when writing test cases in Swift?
In objective C, we are using like:
XCTFail("%s", __PRETTY_FUNCTION__);
what is the replacement of this when writing test cases in Swift?
In Swift, use
"\(#function)"
to replace__PRETTY_FUNCTION__