* github.com/Jeffail/gabs */ Verifies: STK-REQ-001 MCDC STK-REQ-001: N/A Verifies: STK-REQ-003 MCDC STK-REQ-003: N/A Verifies: STK-REQ-004 MCDC STK-REQ-004: N/A Verifies: STK-REQ-005 MCDC STK-REQ-005: N/A Verifies: STK-REQ-007 MCDC STK-REQ-007: N/A
(b *testing.B)
| 273 | // Verifies: STK-REQ-007 |
| 274 | // MCDC STK-REQ-007: N/A |
| 275 | func BenchmarkGabsSmall(b *testing.B) { |
| 276 | for i := 0; i < b.N; i++ { |
| 277 | json, _ := gabs.ParseJSON(smallFixture) |
| 278 | |
| 279 | nothing( |
| 280 | json.Path("uuid").Data().(string), |
| 281 | json.Path("tz").Data().(float64), |
| 282 | json.Path("ua").Data().(string), |
| 283 | json.Path("st").Data().(float64), |
| 284 | ) |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | /* |
| 289 | github.com/bitly/go-simplejson |
nothing calls this directly
no test coverage detected
searching dependent graphs…