Is it possible to reduce the verbosity of the unit testing output in Xcode 5?
I have one test with two asserts and I get all of this
What I want to see is something short like this:
My assert statement:
I have one test with two asserts and I get all of this
Code:
2014-02-23 14:07:09.254 MyTextStorage[44260:303] ApplePersistenceIgnoreState: Existing state will not be touched. New state will be written to /.../MyTestStorage.savedState
Test Suite 'All tests' started at 2014-02-23 13:07:09 +0000
Test Suite 'MyUnitTests.xctest' started at 2014-02-23 13:07:09 +0000
Test Suite 'MyTest' started at 2014-02-23 13:07:09 +0000
Test Case '-[MyTest testExample]' started.
Test Case '-[MyTest testExample]' passed (3.962 seconds).
Test Suite 'MyTest' finished at 2014-02-23 13:07:13 +0000.
Executed 1 test, with 0 failures (0 unexpected) in 3.962 (3.962) seconds
Test Suite 'MyUnitTests.xctest' finished at 2014-02-23 13:07:13 +0000.
Executed 1 test, with 0 failures (0 unexpected) in 3.962 (3.963) seconds
Test Suite 'All tests' finished at 2014-02-23 13:07:13 +0000.
Executed 1 test, with 0 failures (0 unexpected) in 3.962 (3.963) seconds
What I want to see is something short like this:
Code:
Test Case '-[MyTest testExample]' passed/failed.
My assert statement:
Code:
XCTAssert([[textStorage string] isEqualToString:@"test"]);