1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
package lightstep_tracer_common_test
import (
"testing"
"github.com/lightstep/lightstep-tracer-common/golang/gogo/collectorpb"
"github.com/lightstep/lightstep-tracer-common/golang/gogo/collectorpb/collectorpbfakes"
"github.com/lightstep/lightstep-tracer-common/golang/gogo/lightsteppb"
)
func TestProtoIsGogo(t *testing.T) {
var r collectorpb.ReportRequest
_, _ = r.Marshal()
var c lightsteppb.BinaryCarrier
_, _ = c.Marshal()
_ = collectorpbfakes.FakeCollectorServiceClient{}
}
|