com.intershop.oms.test.businessobject.OMSBusinessObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iom-test-framework Show documentation
Show all versions of iom-test-framework Show documentation
An "SDK"-style library improving test automation for Intershop Order Management.
package com.intershop.oms.test.businessobject;
public abstract class OMSBusinessObject
{
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
protected String toIndentedString(Object o )
{
if (o == null)
{
return "null";
}
return o.toString().replace("\n", "\n ");
}
}