CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.
TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Oct 2016 |
Maintained by Xaree Lee.
Since Xcode 8 killed XcodeColors, the current way using XCTestLog on Xcode 8 is just plain texts with emoji. You could still use XCTestLog to stylish XCTest logs without coloring.
XLTestLog v1.1+ will remove "color code" from logs if you don't privide a UseXcodeColors == YES
preprocess macro.
XLTestLog is a lightweight library for stylish XCTest logs. It makes your testing logs more readable in Xcode Console.
NSLog()
).The following is an example for test results in Xcode Console using XLTestLog:
And this is without using XLTestLog:
The readability between them is quite different. The original test code for the console logs is simple (one passed test, one failed test, one measure task, and one message fromNSLog()
):
@implementation XLTestLogDevTests
- (void)testPassedCase {
XCTAssert(YES, @"Pass");
NSLog(@"This is a message from `NSLog()`.");
}
- (void)testFailureCase {
XCTAssert(NO, @"Fail");
}
- (void)testPerformanceExample {
// This is an example of a performance test case.
[self measureBlock:^{
int j = 0;
for (int i = 0; i < 1000000; i++) {
j += i;
}
}];
}
@end
No additional code is needed to use XLTestLog.
Currently, you should use XLTestLog with XcodeColors. If you don't, it would show the color code in the logs.
In the next release, XLTestLog will read the environment variable XcodeColors
to decide whether using XcodeColors to paint log messages or not.
Before installing XLTestLog, please read the section Release Notes.
You can install XLTestLog manually via adding files in XLTestLog/
directory into your project.
Any help would be most welcome. Even buy me a beer. :p
XLTestLog is available under the MIT license. See the LICENSE file for more info.