mirror of
https://github.com/fastfloat/fast_float.git
synced 2025-12-06 16:56:57 +08:00
Adding more tests.
This commit is contained in:
parent
a79f2d9841
commit
cd5160a007
@ -37,9 +37,11 @@ bool eddelbuettel() {
|
|||||||
"+2.2",
|
"+2.2",
|
||||||
"1d+4",
|
"1d+4",
|
||||||
"1d-1",
|
"1d-1",
|
||||||
"0."
|
"0.",
|
||||||
"-.1",
|
"-.1",
|
||||||
"+.1"};
|
"+.1",
|
||||||
|
"1e+1",
|
||||||
|
"+1e1"};
|
||||||
std::vector<std::pair<bool, double>> expected_results = {
|
std::vector<std::pair<bool, double>> expected_results = {
|
||||||
{true, std::numeric_limits<double>::infinity()},
|
{true, std::numeric_limits<double>::infinity()},
|
||||||
{true, 3.16227766016838},
|
{true, 3.16227766016838},
|
||||||
@ -71,9 +73,11 @@ bool eddelbuettel() {
|
|||||||
{true, 0},
|
{true, 0},
|
||||||
{true, -0.1},
|
{true, -0.1},
|
||||||
{true, 0.1},
|
{true, 0.1},
|
||||||
|
{true, 10},
|
||||||
|
{true, 10},
|
||||||
};
|
};
|
||||||
for (size_t i = 0; i < inputs.size(); i++) {
|
for (size_t i = 0; i < inputs.size(); i++) {
|
||||||
std::string &input = inputs[i];
|
const std::string &input = inputs[i];
|
||||||
std::pair<bool, double> expected = expected_results[i];
|
std::pair<bool, double> expected = expected_results[i];
|
||||||
double result;
|
double result;
|
||||||
// answer contains a error code and a pointer to the end of the
|
// answer contains a error code and a pointer to the end of the
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user