return this;
}
public InspectionVerifier value(String attributeName, String propertyName, String defaultValue, String currentValue, String description)
{
final ConfigAttribute attribute = attributeIterator.next();
assertEquals(attribute.getAttributeName(), attributeName, "Attribute name");
assertEquals(attribute.getPropertyName(), propertyName, "Property name");
assertEquals(attribute.getDefaultValue(), defaultValue, "Default value");
assertEquals(attribute.getCurrentValue(), currentValue, "Current value");
assertEquals(attribute.getDescription(), description, "Description");
return this;
}