• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package cgo_pure_test
2
3import (
4	"fmt"
5	"testing"
6
7	"github.com/bazelbuild/rules_go/tests/cgo_pure"
8)
9
10var Expect = ""
11
12func TestValue(t *testing.T) {
13	got := fmt.Sprintf("%d", cgo_pure.Value)
14	if got != Expect {
15		t.Errorf("got %q; want %q", got, Expect)
16	}
17}
18