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