hello-dagger/main_test.go

15 lines
170 B
Go
Raw Normal View History

2024-10-11 13:12:10 +00:00
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)
}
}