| 217 | } |
| 218 | |
| 219 | void AssertMetadataMatches(App::Metadata& testObject) |
| 220 | { |
| 221 | ASSERT_EQ(testObject.name(), _name); |
| 222 | ASSERT_EQ(testObject.description(), _description); |
| 223 | ASSERT_EQ(testObject.version(), App::Meta::Version(_version)); |
| 224 | } |
| 225 | |
| 226 | private: |
| 227 | std::string _name = "TestAddon"; |
nothing calls this directly
no test coverage detected