#include #include #include #include #include #include #include #include #include int main(int argc, char** argv) { std::vector args; for (int i=1;i("bool") && *params.get("bool") == true)); params["bool"] = "true"; BOOST_TEST( (params.get("bool") && *params.get("bool") == true)); //params["bool"] = 1; //BOOST_TEST( (params.get("bool") && *params.get("bool") == true)); //params["bool"] = "1"; //BOOST_TEST( (params.get("bool") && *params.get("bool") == true)); params["bool"] = "True"; BOOST_TEST( (params.get("bool") && *params.get("bool") == true)); params["bool"] = "on"; BOOST_TEST( (params.get("bool") && *params.get("bool") == true)); params["bool"] = "yes"; BOOST_TEST( (params.get("bool") && *params.get("bool") == true)); // false //params["bool"] = false; //BOOST_TEST( (params.get("bool") && *params.get("bool") == false) ); params["bool"] = "false"; BOOST_TEST( (params.get("bool") && *params.get("bool") == false) ); //params["bool"] = 0; //BOOST_TEST( (params.get("bool") && *params.get("bool") == false)); //params["bool"] = "0"; //BOOST_TEST( (params.get("bool") && *params.get("bool") == false)); params["bool"] = "False"; BOOST_TEST( (params.get("bool") && *params.get("bool") == false)); params["bool"] = "off"; BOOST_TEST( (params.get("bool") && *params.get("bool") == false)); params["bool"] = "no"; BOOST_TEST( (params.get("bool") && *params.get("bool") == false)); // strings params["string"] = "hello"; BOOST_TEST( (params.get("string") && *params.get("string") == "hello") ); // int params["int"] = mapnik::value_integer(1); BOOST_TEST( (params.get("int") && *params.get("int") == 1) ); // double params["double"] = 1.5; BOOST_TEST( (params.get("double") && *params.get("double") == 1.5) ); // value_null params["null"] = mapnik::value_null(); //BOOST_TEST( (params.get("null")/* && *params.get("null") == mapnik::value_null()*/) ); if (!::boost::detail::test_errors()) { if (quiet) std::clog << "\x1b[1;32m.\x1b[0m"; else std::clog << "C++ parameters: \x1b[1;32m✓ \x1b[0m\n"; #if BOOST_VERSION >= 104600 ::boost::detail::report_errors_remind().called_report_errors_function = true; #endif } else { return ::boost::report_errors(); } }