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