We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba6c2a6 commit a10120aCopy full SHA for a10120a
handler_test.go
@@ -5,9 +5,15 @@ import (
5
"os"
6
"testing"
7
8
- "github.com/smartystreets/training-cohort/calcy-lib/calc"
+ "github.com/sryanh/calcy-lib/calc"
9
)
10
11
+func assertEqual(t *testing.T, a any, b any) {
12
+ if a != b {
13
+ t.Error("Expected them to be equal but they weren't.")
14
+ }
15
+}
16
+func assertFail(t *testing.T, a any, b any) {}
17
func TestMissingInput(t *testing.T) {
18
var values []string
19
handle := NewHandler(os.Stdout, calc.Addition{})
0 commit comments