/**
* Tests whether PelletOptions.DISABLE_EL_CLASSIFIER can be properly read from a properties file
*/
@Test
public void testDisableELClassifierOptionRead() {
Properties newOptions = new PropertiesBuilder().set( "DISABLE_EL_CLASSIFIER", "true" ).build();
Properties savedOptions = PelletOptions.setOptions( newOptions );
try {
assertTrue( PelletOptions.DISABLE_EL_CLASSIFIER );
newOptions = new PropertiesBuilder().set( "DISABLE_EL_CLASSIFIER", "false" ).build();
PelletOptions.setOptions( newOptions );
assertFalse( PelletOptions.DISABLE_EL_CLASSIFIER );
}
finally {