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