Home | History | Annotate | Download | only in runner

Lines Matching full:testoutput

4758 func statusPrinter(doneChan chan *testOutput, statusChan chan statusMsg, total int) {
4761 testOutput := newTestOutput()
4780 testOutput.addResult(msg.test.name, "FAIL")
4786 testOutput.addResult(msg.test.name, "PASS")
4798 doneChan <- testOutput
4839 doneChan := make(chan *testOutput)
4857 testOutput := <-doneChan
4862 if err := testOutput.writeTo(*jsonOutput); err != nil {
4867 if !testOutput.allPassed {