(t *testing.T)
| 82 | } |
| 83 | |
| 84 | func TestMapFromJSONWithError(t *testing.T) { |
| 85 | var m objx.Map |
| 86 | |
| 87 | assert.Panics(t, func() { |
| 88 | m = objx.MustFromJSON(`"name":"Mat"}`) |
| 89 | }) |
| 90 | assert.Nil(t, m) |
| 91 | } |
| 92 | |
| 93 | func TestConversionJSONInt(t *testing.T) { |
| 94 | jsonString := |
nothing calls this directly
no test coverage detected
searching dependent graphs…