1
hermetic_cc_toolchain/test/go/hello_test.go
Motiejus Jakštys ebbf499208 move golang tests to its own directory
this prepares for more test binaries.
2022-02-03 15:24:26 +02:00

14 lines
177 B
Go

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)
}
}