| 57 | }; |
| 58 | |
| 59 | static bool readPlatform(PlatformTest& platform, const char* xmldata) { |
| 60 | tinyxml2::XMLDocument doc; |
| 61 | return (doc.Parse(xmldata) == tinyxml2::XML_SUCCESS) && platform.loadFromXmlDocument(&doc); |
| 62 | } |
| 63 | |
| 64 | void empty() const { |
| 65 | // An empty platform file does not change values, only the type. |
nothing calls this directly
no test coverage detected