importer.configure(importConfig);
ExportedEntityMatcher<MeasurementDefinition, MetricTemplate> matcher = importer.getExportedEntityMatcher();
MetricTemplate template1 = new MetricTemplate(updatedDef);
MetricTemplate template2 = new MetricTemplate(notUpdatedDef);
assertSame(matcher.findMatch(template1), updatedDef,
"The matching metric template should have found the defined measurement definition");
assertSame(matcher.findMatch(template2), notUpdatedDef,
"The matching metric template should have found the defined measurement definition");