forked from bblanchon/ArduinoJson
Added custom implementation of strtol()
(issue #465)
`char` is now treated as an integral type (issue #337, #370)
This commit is contained in:
@ -18,6 +18,10 @@ struct Polyfills_IsFloat_Tests : testing::Test {
|
||||
};
|
||||
#define TEST_(X) TEST_F(Polyfills_IsFloat_Tests, X)
|
||||
|
||||
TEST_(Null) {
|
||||
check(false, NULL);
|
||||
}
|
||||
|
||||
TEST_(NoExponent) {
|
||||
check(true, "3.14");
|
||||
check(true, "-3.14");
|
||||
|
Reference in New Issue
Block a user