use of org.exoplatform.container.xml.InitParams in project kernel by exoplatform.
the class TestConfigurationXML method assertValueParam.
private void assertValueParam(String expectedValue, Component component, String paramName) {
InitParams initParams = component.getInitParams();
assertNotNull(initParams);
ValueParam valueParam = initParams.getValueParam(paramName);
assertNotNull(paramName);
assertEquals(expectedValue, valueParam.getValue());
}
Aggregations