(t *testing.T)
| 15 | var testDocumentJSONBytes []byte |
| 16 | |
| 17 | func testDocumentJSON(t *testing.T) any { |
| 18 | t.Helper() |
| 19 | |
| 20 | var document any |
| 21 | require.NoError(t, json.Unmarshal(testDocumentJSONBytes, &document)) |
| 22 | |
| 23 | return document |
| 24 | } |
| 25 | |
| 26 | func testStructJSONDoc(t *testing.T) testStructJSON { |
| 27 | t.Helper() |
no outgoing calls
no test coverage detected
searching dependent graphs…