We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28b5b51 commit 4c78f7dCopy full SHA for 4c78f7d
1 file changed
main_test.go
@@ -0,0 +1,12 @@
1
+package main_test
2
+
3
+import (
4
+ "testing"
5
+)
6
7
+func TestExample(t *testing.T) {
8
+ got := (1 + 1)
9
+ if got != 2 {
10
+ t.Errorf("1 + 1 = %d; want 2", got)
11
+ }
12
+}
0 commit comments