| 192 | } |
| 193 | |
| 194 | bool initializeOptions() |
| 195 | { |
| 196 | auto const& suite = boost::unit_test::framework::master_test_suite(); |
| 197 | |
| 198 | auto options = std::make_unique<solidity::test::CommonOptions>(); |
| 199 | bool shouldContinue = options->parse(suite.argc, suite.argv); |
| 200 | if (!shouldContinue) |
| 201 | return false; |
| 202 | options->validate(); |
| 203 | |
| 204 | solidity::test::CommonOptions::setSingleton(std::move(options)); |
| 205 | return true; |
| 206 | } |
| 207 | |
| 208 | } |
| 209 |
no test coverage detected