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