| 321 | } |
| 322 | |
| 323 | boost::unit_test::precondition::predicate_t minEVMVersionCheck(langutil::EVMVersion _minEVMVersion) |
| 324 | { |
| 325 | return [_minEVMVersion](boost::unit_test::test_unit_id) { |
| 326 | return test::CommonOptions::get().evmVersion() >= _minEVMVersion; |
| 327 | }; |
| 328 | } |
| 329 | |
| 330 | bool loadVMs(CommonOptions const& _options) |
| 331 | { |
no test coverage detected