@Test
public void readValues() throws IOException, SerializationException {
log("readValues()");
Serializer<String> serializer = new StringSerializer();
ByteArrayInputStream inputStream = new ByteArrayInputStream(testBytes);
String result = serializer.readObject(inputStream);
assertNotNull(result);
assertEquals(result, testString);
// dump content, but useful only for text resources ...
String dump = new String(result);