| 12 | |
| 13 | template<> |
| 14 | void BoostDataContainer<Example_nnp_checkf>::setup() |
| 15 | { |
| 16 | Example_nnp_checkf* e = nullptr; |
| 17 | |
| 18 | examples.push_back(Example_nnp_checkf("H2O_RPBE-D3")); |
| 19 | e = &(examples.back()); |
| 20 | e->args = ""; |
| 21 | |
| 22 | examples.push_back(Example_nnp_checkf("LJ")); |
| 23 | e = &(examples.back()); |
| 24 | e->args = ""; |
| 25 | |
| 26 | return; |
| 27 | } |
| 28 | |
| 29 | #endif |
nothing calls this directly
no test coverage detected