// Read the message attribute.
String message = reader.getAttributeValue(null, "greeting");
// Create and initialize the test implementation model
TestImplementation implementation = testFactory.createTestImplementation();
implementation.setGreeting(message);
// Skip to end element
while (reader.hasNext()) {
if (reader.next() == END_ELEMENT && IMPLEMENTATION_TEST.equals(reader.getName())) {
break;