use of org.pentaho.platform.util.JVMParameterProvider in project pentaho-platform by pentaho.
the class MultipleComponentIT method testJVMParameterProviderDifferentPath2.
public void testJVMParameterProviderDifferentPath2() {
startTest();
JVMParameterProvider provider = new JVMParameterProvider();
try {
// $NON-NLS-1$
Object parameterValue = provider.getDecimalParameter("bogus", null);
// $NON-NLS-1$
System.out.println("Paramater Value Received is " + parameterValue);
} catch (Exception e) {
e.printStackTrace();
// $NON-NLS-1$
assertTrue("Expected exception was caught", true);
}
finishTest();
}
Aggregations