use of org.pentaho.test.platform.engine.core.XmlSimpleSystemSettings in project pentaho-platform by pentaho.
the class ChartBeansSystemListenerIT method setUp.
/**
* @throws java.lang.Exception
*/
@SuppressWarnings("deprecation")
@Before
public void setUp() throws Exception {
String solutionsRelativePath = TestResourceLocation.TEST_RESOURCES + "/org/pentaho/test/platform/plugin/chartbeans/solutions";
MicroPlatform mp = new MicroPlatform(solutionsRelativePath);
mp.define(ISolutionEngine.class, Object.class);
ISystemSettings settings = new XmlSimpleSystemSettings();
mp.setSettingsProvider(settings);
mp.init();
}
Aggregations