* github.com/bitly/go-simplejson */ 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)
| 370 | // Verifies: STK-REQ-007 |
| 371 | // MCDC STK-REQ-007: N/A |
| 372 | func BenchmarkJasonSmall(b *testing.B) { |
| 373 | for i := 0; i < b.N; i++ { |
| 374 | json, _ := jason.NewObjectFromBytes(smallFixture) |
| 375 | |
| 376 | json.GetString("uuid") |
| 377 | json.GetFloat64("tz") |
| 378 | json.GetString("ua") |
| 379 | json.GetFloat64("st") |
| 380 | |
| 381 | nothing() |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | /* |
| 386 | github.com/mreiferson/go-ujson |
nothing calls this directly
no test coverage detected
searching dependent graphs…