Lines Matching refs:output
47 output := &lastOutput{}
48 status.AddOutput(output)
56 output.Expect(t, Counts{})
58 if output.msgLevel != VerboseLvl {
59 t.Errorf("Expected verbose message, but got %d", output.msgLevel)
61 if output.msg != msg {
62 t.Errorf("unexpected message contents:\nwant: %q\n got: %q\n", msg, output.msg)
66 output.Expect(t, Counts{})
69 output.Expect(t, Counts{
77 output.Expect(t, Counts{
92 if output.result.Output != msg {
93 t.Errorf("output for action did not match:\nwant: %q\n got: %q\n", msg, output.result.Output)
100 if output.result.Output != "" {
101 t.Errorf("expected no output for last action, but got %q", output.result.Output)
104 output.Expect(t, Counts{
114 output := &lastOutput{}
115 status.AddOutput(output)
123 output.Expect(t, Counts{
132 output.Expect(t, Counts{
141 output.Expect(t, Counts{
150 output.Expect(t, Counts{
160 output := &lastOutput{}
161 status.AddOutput(output)
172 if output.result.Error == nil {