use of com.newrelic.agent.extension.YamlExtension in project newrelic-java-agent by newrelic.
the class JmxObjectFactoryTest method createExtension.
private Extension createExtension(String path) throws Exception {
File file = getFile(path);
BaseConfig config = JmxYmlParserTest.readYml(file);
return new YamlExtension(getClass().getClassLoader(), "Test", config.getProperties(), true);
}
Aggregations