(b *testing.B)
| 300 | } |
| 301 | |
| 302 | func BenchmarkJSONMarshallingSamplePairMatrix(b *testing.B) { |
| 303 | for i := 0; i < b.N; i++ { |
| 304 | _, err := json.Marshal(samplePairMatrixValue) |
| 305 | require.NoErrorf(b, err, "error marshalling") |
| 306 | } |
| 307 | } |
nothing calls this directly
no outgoing calls
no test coverage detected