lint:file-ignore SA1019 Ignore deprecation warnings for EncodedConn
(tl TestLogger)
| 23 | //lint:file-ignore SA1019 Ignore deprecation warnings for EncodedConn |
| 24 | |
| 25 | func NewGobEncodedConn(tl TestLogger) *nats.EncodedConn { |
| 26 | ec, err := nats.NewEncodedConn(NewConnection(tl, TEST_PORT), nats.GOB_ENCODER) |
| 27 | if err != nil { |
| 28 | tl.Fatalf("Failed to create an encoded connection: %v\n", err) |
| 29 | } |
| 30 | return ec |
| 31 | } |
| 32 | |
| 33 | func TestEncBuiltinGobMarshalString(t *testing.T) { |
| 34 | s := RunServerOnPort(TEST_PORT) |
no test coverage detected