| 16 | using MaterialExportTest_TdmMissionSetup = TdmMissionSetup; |
| 17 | |
| 18 | inline void expectDefinitionContains(const MaterialPtr& material, const std::string& expectedContainedString) |
| 19 | { |
| 20 | EXPECT_NE(material->getDefinition().find(expectedContainedString), std::string::npos) |
| 21 | << "Material definition doesn't contain " << expectedContainedString << " as expected.\n" |
| 22 | << "Definition was: \n" << material->getDefinition(); |
| 23 | } |
| 24 | |
| 25 | inline void expectDefinitionDoesNotContain(const MaterialPtr& material, const std::string& unexpectedString) |
| 26 | { |
no test coverage detected