blob: d8c3e5cbcc931b0bf8624c1be8aacc5d2ff04acd [file] [log] [blame]
package cgo_pure_test
import (
"fmt"
"testing"
"github.com/bazelbuild/rules_go/tests/cgo_pure"
)
var Expect = ""
func TestValue(t *testing.T) {
got := fmt.Sprintf("%d", cgo_pure.Value)
if got != Expect {
t.Errorf("got %q; want %q", got, Expect)
}
}