1
Fork 0
hermetic_cc_toolchain/test/cgo/cgo_test.go

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