go_build_test.go 538 B

12345678910111213141516171819
  1. package go_build_test
  2. import (
  3. "testing"
  4. _ "github.com/cncf/xds/go/xds/data/orca/v3"
  5. _ "github.com/cncf/xds/go/xds/service/orca/v3"
  6. _ "github.com/cncf/xds/go/xds/type/v3"
  7. // Old names for backward compatibility.
  8. // TODO(roth): Remove these once no one is using them anymore.
  9. _ "github.com/cncf/xds/go/udpa/data/orca/v1"
  10. _ "github.com/cncf/xds/go/udpa/service/orca/v1"
  11. _ "github.com/cncf/xds/go/udpa/type/v1"
  12. )
  13. func TestNoop(t *testing.T) {
  14. // Noop test that verifies the successful importation of xDS protos
  15. }