mirror of https://github.com/cncf/xds.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
538 B
19 lines
538 B
package go_build_test |
|
|
|
import ( |
|
"testing" |
|
|
|
_ "github.com/cncf/xds/go/xds/data/orca/v3" |
|
_ "github.com/cncf/xds/go/xds/service/orca/v3" |
|
_ "github.com/cncf/xds/go/xds/type/v3" |
|
|
|
// Old names for backward compatibility. |
|
// TODO(roth): Remove these once no one is using them anymore. |
|
_ "github.com/cncf/xds/go/udpa/data/orca/v1" |
|
_ "github.com/cncf/xds/go/udpa/service/orca/v1" |
|
_ "github.com/cncf/xds/go/udpa/type/v1" |
|
) |
|
|
|
func TestNoop(t *testing.T) { |
|
// Noop test that verifies the successful importation of xDS protos |
|
}
|
|
|