package de.ugoe.cs.eventbench.assertions; import de.ugoe.cs.eventbench.data.IReplayable; import de.ugoe.cs.util.StringTools; /** *

* This class defines the replay for a textEquals assertion. *

* * @author Jeffrey Hall, Steffen Herbold * @version 2.0 */ public class TextEqualsReplay implements IReplayable { /** *

* Reference value which is compared to the targets text. *

*/ private String expectedValue; /** *

* Target to which the text is compared. *

*/ private String target; /** *

* Id for object serialization. *

*/ private static final long serialVersionUID = 1L; public TextEqualsReplay(String expectedValue, String target) { this.expectedValue = expectedValue; this.target = target; } /* * (non-Javadoc) * * @see de.ugoe.cs.eventbench.data.IReplayable#getReplay() */ @Override public String getReplay() { expectedValue = StringTools.xmlEntityReplacement(expectedValue); StringBuilder currentMsgStr = new StringBuilder(400); currentMsgStr.append(" "); currentMsgStr.append(StringTools.ENDLINE); currentMsgStr.append(""); currentMsgStr.append(StringTools.ENDLINE); currentMsgStr.append(target); currentMsgStr.append(StringTools.ENDLINE); currentMsgStr.append(""); currentMsgStr.append(StringTools.ENDLINE); currentMsgStr.append(""); currentMsgStr.append(StringTools.ENDLINE); return currentMsgStr.toString(); } /* * (non-Javadoc) * * @see de.ugoe.cs.eventbench.data.IReplayable#getTarget() */ @Override public String getTarget() { return target; } }