When using XCTest method recordFailureWithDescription like this:
func testRecordFailureMessageNotWorking() {
XCUIApplication().button["Login"].tap()
self.recordFailureWithDescription("Custom Description", inFile: #file, atLine: #line, expected: true)
}
The console output no longer provides the custom description or the file name or the line number as it did in xcode 7.
Anyone have any thoughts on this? or a way to get the custom description?