Kiwi test results are written in much the same way as typical OCUnit test results, so there should be nothing special about exporting Kiwi test results compared to other Xcode testing platforms. With Xcode 4, a log file is created using:
~/Library/Developer/Xcode/DerivedData/(product_identifier)/TestResults/(timestamp).xctestresults/results.plist
This plist file is in a simple format, with an array of dicts for each Kiwi specification. The “Test Identifier” and “Test Name” values are generated by Kiwi by concatenating the strings in the (possibly nested) context and it declarations for each specification, and the “Test Result” value will be either Succeeded or Failed .
You might want to address some other issues (3 different links) in the Stack Overflow section, which discusses exporting Xcode results or testing automation or scripts.
source share