// Clear all properties and reload properties file
properties.clear();
Assert.assertNull(properties.getProperty("PASSWORD"));
Assert.assertNull(properties.getProperty("LOGIN"));
fis = new FileInputStream(f);
properties.load(fis);
// Valid properties stored value, the property decryption value is
// realized on the fly the EncryptableProperties object...
Assert.assertEquals(TEXT_TO_ENCRYPT, properties.getProperty("PASSWORD"));
Assert.assertEquals("MY_LOGIN", properties.getProperty("LOGIN"));
} finally {