Improved code quality

This commit is contained in:
2023-08-31 17:03:52 +02:00
parent a7e65ca27f
commit 95976e39bf
16 changed files with 128 additions and 69 deletions

7
test.go Normal file
View File

@ -0,0 +1,7 @@
package assert
// test is the interface used for tests.
type test interface {
Errorf(format string, args ...any)
FailNow()
}