(t *testing.T)
| 43 | } |
| 44 | |
| 45 | func TestConvertJSONString(t *testing.T) { |
| 46 | assert.Equal(t, "blah", ConvertJSONString(`"blah"`)) |
| 47 | assert.Equal(t, "blah", ConvertJSONString("blah")) |
| 48 | } |
| 49 | |
| 50 | func TestJSONStringUtils(t *testing.T) { |
| 51 | tests := []struct { |
nothing calls this directly
no test coverage detected