1
Fork 0
hermetic_cc_toolchain/test/hello_test.go

12 lines
172 B
Go
Raw Normal View History

2022-01-28 15:49:24 +02:00
package main
import "testing"
func TestHello(t *testing.T) {
want := "hello, world"
got := chello()
if got != want {
t.Errorf("expected %q, got %q", want, got)
}
}