Proposal to change:
type Reporter interface {
// Report is called when the approved and received file do not match.
Report(approved, received string) bool
}
to
type Reporter interface {
// Report is called when the approved and received file do not match.
Report(t *testing.T, approved, received string) bool
}
(or introduce a separate interface to not break backward compatibility
Proposal to change:
to
(or introduce a separate interface to not break backward compatibility