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
629 B
19 lines
629 B
7 years ago
|
package go_build_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/bootstrap"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/discovery"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/cds"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/eds"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/hds"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/lds"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/rds"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/rls"
|
||
|
_ "github.com/envoyproxy/data-plane-api/api/sds"
|
||
|
)
|
||
|
|
||
|
func TestNoop(t *testing.T) {
|
||
|
// Noop test that verifies the successful importation of Envoy V2 API protos
|
||
|
}
|