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