lint:file-ignore SA1019 Ignore deprecation warnings for EncodedConn
(tl TestLogger)
| 28 | //lint:file-ignore SA1019 Ignore deprecation warnings for EncodedConn |
| 29 | |
| 30 | func NewProtoEncodedConn(tl TestLogger) *nats.EncodedConn { |
| 31 | ec, err := nats.NewEncodedConn(NewConnection(tl, TEST_PORT), protobuf.PROTOBUF_ENCODER) |
| 32 | if err != nil { |
| 33 | tl.Fatalf("Failed to create an encoded connection: %v\n", err) |
| 34 | } |
| 35 | return ec |
| 36 | } |
| 37 | |
| 38 | func TestEncProtoMarshalStruct(t *testing.T) { |
| 39 | s := RunServerOnPort(TEST_PORT) |
no test coverage detected