@Test(expectedExceptions = RuntimeException.class)
public void test_loadInvalid_replacementNotFound() {
ConcurrentMap<String, String> properties = new ConcurrentHashMap<String, String>();
ComponentConfigIniLoader loader = new ComponentConfigIniLoader(LOGGER, properties );
Resource resource = new InMemoryResource(
"[block]" + NEWLINE +
"m = ${notFound}" + NEWLINE
);
loader.load(resource, 0, new ComponentConfig());