| 12 | using namespace ArduinoJson::detail; |
| 13 | |
| 14 | void checkDouble(const char* input, double expected) { |
| 15 | CAPTURE(input); |
| 16 | REQUIRE(parseNumber<double>(input) == Approx(expected)); |
| 17 | } |
| 18 | |
| 19 | void checkDoubleNaN(const char* input) { |
| 20 | CAPTURE(input); |