Test data from https://github.com/akheron/jansson/tree/master/test/suites/valid jansson, Copyright (c) 2009-2014 Petri Lehtinen (MIT Licensed)
(t *testing.T)
| 26 | // (MIT Licensed) |
| 27 | |
| 28 | func TestFloatRealCapitalENegativeExponent(t *testing.T) { |
| 29 | testExpectedXValBare(t, |
| 30 | 0.01, |
| 31 | `1E-2`, |
| 32 | &Xfloat64{}) |
| 33 | } |
| 34 | |
| 35 | func TestFloatRealCapitalEPositiveExponent(t *testing.T) { |
| 36 | testExpectedXValBare(t, |
nothing calls this directly
no test coverage detected
searching dependent graphs…