(t *testing.T)
| 24 | } |
| 25 | |
| 26 | func testStructJSONDoc(t *testing.T) testStructJSON { |
| 27 | t.Helper() |
| 28 | |
| 29 | var document testStructJSON |
| 30 | require.NoError(t, json.Unmarshal(testDocumentJSONBytes, &document)) |
| 31 | |
| 32 | return document |
| 33 | } |
| 34 | |
| 35 | func testStructJSONPtr(t *testing.T) *testStructJSON { |
| 36 | t.Helper() |
no outgoing calls
no test coverage detected
searching dependent graphs…