use of org.apache.hop.core.HopVariablesList in project hop by apache.
the class HopVariablesListTest method testInit.
@Test
public void testInit() throws Exception {
HopVariablesList variablesList = HopVariablesList.getInstance();
variablesList.init();
DescribedVariable describedVariable = variablesList.findEnvironmentVariable(Const.HOP_PASSWORD_ENCODER_PLUGIN);
assertNotNull(describedVariable);
boolean actual = Boolean.valueOf(describedVariable.getValue());
assertEquals(false, actual);
assertEquals("Specifies the password encoder plugin to use by ID (Hop is the default).", describedVariable.getDescription());
}
Aggregations