| 37 | BOOST_AUTO_TEST_SUITE(BOOST_TEST_MODULE) |
| 38 | |
| 39 | BOOST_AUTO_TEST_CASE(simulator_instance_constructor) |
| 40 | { |
| 41 | ModelHandle model(new Model()); |
| 42 | DataHandle data(new Data(*model)); |
| 43 | GeometryModelHandle geom_model(new GeometryModel()); |
| 44 | GeometryDataHandle geom_data(new GeometryData(*geom_model)); |
| 45 | BOOST_CHECK_NO_THROW(Simulator sim(model, data, geom_model, geom_data)); |
| 46 | } |
| 47 | |
| 48 | BOOST_AUTO_TEST_CASE(simulator_instance_constructor_2) |
| 49 | { |
nothing calls this directly
no outgoing calls
no test coverage detected