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__
"\(#function)"
__PRETTY_FUNCTION__