| 1872 | } |
| 1873 | |
| 1874 | static void test_template(testing & t, const std::string & name, const std::string & tmpl, const json & vars, const std::string & expect) { |
| 1875 | if (g_python_mode) { |
| 1876 | test_template_py(t, name, tmpl, vars, expect); |
| 1877 | } else { |
| 1878 | test_template_cpp(t, name, tmpl, vars, expect); |
| 1879 | } |
| 1880 | } |
| 1881 | |
| 1882 | // |
| 1883 | // fuzz tests to ensure no crashes occur on malformed inputs |
no test coverage detected