wip: some more drastic refactoring

This commit is contained in:
2024-03-05 02:47:10 +00:00
parent f42dbf9010
commit 9d8db8e5f7
17 changed files with 2897 additions and 1533 deletions

10
testingt.go Normal file
View File

@@ -0,0 +1,10 @@
package golden
// TestingT is a interface describing a sub-set of methods of *testing.T which
// golden uses.
type TestingT interface {
Fatalf(format string, args ...interface{})
Helper()
Logf(format string, args ...interface{})
Name() string
}