Iterator it = config.getKeys();
while (it.hasNext())
{
String key = (String) it.next();
assertTrue("The saved configuration doesn't contain the key '" + key + "'", checkConfig.containsKey(key));
Object value = checkConfig.getProperty(key);
if (value instanceof byte[])
{
byte[] array = (byte[]) value;