| 153 | } |
| 154 | |
| 155 | static ScriptError_t ParseScriptError(const std::string& name) |
| 156 | { |
| 157 | for (const auto& se : script_errors) |
| 158 | if (se.name == name) |
| 159 | return se.err; |
| 160 | BOOST_ERROR("Unknown scripterror \"" << name << "\" in test description"); |
| 161 | return SCRIPT_ERR_UNKNOWN_ERROR; |
| 162 | } |
| 163 | |
| 164 | BOOST_FIXTURE_TEST_SUITE(script_tests, BasicTestingSetup) |
| 165 |
no outgoing calls
no test coverage detected