Commit Friday evening.
PDFA and EXFO Laser are now part of the family
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
function [passedTests, failedTests, skippedTests] = splitPassFailSkippedTests(status)
|
||||
% splits tests between passed, failed and skippedtests
|
||||
skipped = cellfun(@(s) s.skip, status);
|
||||
status_notSkipped = status(~skipped);
|
||||
failed = hasTestFailed(status_notSkipped);
|
||||
|
||||
passedTests = status_notSkipped(~failed);
|
||||
failedTests = status_notSkipped(failed);
|
||||
skippedTests = status(skipped);
|
||||
end
|
||||
Reference in New Issue
Block a user