(t *testing.T)
| 33 | } |
| 34 | |
| 35 | func TestTextFormatter(t *testing.T) { |
| 36 | f := &TextFormatter{} |
| 37 | assert.Equal(t, "{\n \"CallerReference\": null,\n \"Id\": \"/hostedzone/Z1RWMUCMCPKCJX\",\n \"Name\": \"example.com.\",\n \"Config\": {\n \"Comment\": \"comment\",\n \"PrivateZone\": false\n },\n \"Features\": null,\n \"LinkedService\": null,\n \"ResourceRecordSetCount\": 2\n}\n", formatTest(f)) |
| 38 | } |
| 39 | |
| 40 | func TestJsonFormatter(t *testing.T) { |
| 41 | f := &JsonFormatter{} |
nothing calls this directly
no test coverage detected