added a simple none sense test

This commit is contained in:
Patrick Sy 2024-10-11 15:12:10 +02:00
parent ad6be315de
commit 206aebe832
Signed by: Patrick.Sy
GPG key ID: DDDC8EC51823195E

14
main_test.go Normal file
View 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)
}
}