Closed majohn-r closed 5 months ago
Consuming tests are filled with code like this:
if differences, verified := o.Verify(tt.WantedRecording); !verified { for _, difference := range differences { t.Errorf("AboutRun() %s", difference) } }
This issue is to produce a new *Recorder function, Report that could be called like this:
*Recorder
Report
o.Report(t, "AboutRun()", tt.WantedRecording)
Consuming tests are filled with code like this:
This issue is to produce a new
*Recorder
function,Report
that could be called like this: