added a simple none sense test
This commit is contained in:
parent
ad6be315de
commit
206aebe832
1 changed files with 14 additions and 0 deletions
14
main_test.go
Normal file
14
main_test.go
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
package main
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSomething(t *testing.T) {
|
||||||
|
left := 1 + 2
|
||||||
|
right := 3
|
||||||
|
|
||||||
|
if left != right {
|
||||||
|
t.Errorf("got %q, wanted %q", left, right)
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue