Index: trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/FileEqualsAssertEventType.java
===================================================================
--- trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/FileEqualsAssertEventType.java	(revision 922)
+++ trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/FileEqualsAssertEventType.java	(revision 922)
@@ -0,0 +1,33 @@
+
+package de.ugoe.cs.autoquest.assertions;
+
+import de.ugoe.cs.autoquest.eventcore.IEventType;
+
+/**
+ * <p>
+ * Event type for FileEquals assertions.
+ * </p>
+ * 
+ * @version 1.0
+ * @author Steffen Herbold
+ */
+public class FileEqualsAssertEventType implements IEventType {
+
+    /**
+     * <p>
+     * Id for object serialization.
+     * </p>
+     */
+    private static final long serialVersionUID = 1L;
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.eventcore.IEventType#getName()
+     */
+    @Override
+    public String getName() {
+        return "FileEqualsAssertion";
+    }
+
+}
Index: trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/FileEqualsReplay.java
===================================================================
--- trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/FileEqualsReplay.java	(revision 922)
+++ trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/FileEqualsReplay.java	(revision 922)
@@ -0,0 +1,89 @@
+package de.ugoe.cs.autoquest.assertions;
+
+import de.ugoe.cs.autoquest.IReplayDecorator;
+import de.ugoe.cs.autoquest.eventcore.IReplayable;
+import de.ugoe.cs.util.StringTools;
+
+/**
+ * <p>
+ * This class defines the replay for file equals assertions.
+ * </p>
+ * 
+ * @author Jeffrey Hall, Steffen Herbold
+ * @version 2.0
+ */
+public class FileEqualsReplay implements IReplayable {
+
+    /**
+     * <p>
+     * The file that should be equal to expectedFile.
+     * </p>
+     */
+    protected final String actualFile;
+
+    /**
+     * <p>
+     * The file that is used as the reference.
+     * </p>
+     */
+    protected final String expectedFile;
+
+    /**
+     * <p>
+     * Id for object serialization.
+     * </p>
+     */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * <p>
+     * Constructor. Creates a new FileEqualsReplay.
+     * </p>
+     * 
+     * @param expectedFile
+     *            name and path of the expected file
+     * @param actualFile
+     *            name and path of the actual file
+     * @throws IllegalArgumentException
+     *             thrown if expectedFile or actualFile are null
+     */
+    public FileEqualsReplay(String expectedFile, String actualFile) {
+        if (expectedFile == null) {
+            throw new IllegalArgumentException("expected file must not be null");
+        }
+        if (actualFile == null) {
+            throw new IllegalArgumentException("actual file must not be null");
+        }
+        this.expectedFile = expectedFile;
+        this.actualFile = actualFile;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.eventcore.IReplayable#getReplay()
+     */
+    public String getReplay() {
+
+        String actualFileTmp = StringTools.xmlEntityReplacement(actualFile);
+        String expectedFileTmp = StringTools.xmlEntityReplacement(expectedFile);
+
+        StringBuilder currentMsgStr = new StringBuilder(800);
+        currentMsgStr.append("  <fileEquals ");
+        currentMsgStr.append("actualFile=\"" + actualFileTmp + "\" ");
+        currentMsgStr.append("expectedFile=\"" + expectedFileTmp + "\"/>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        return currentMsgStr.toString();
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.eventcore.IReplayable#getDecorator()
+     */
+    @Override
+    public IReplayDecorator getDecorator() {
+        return null;
+    }
+
+}
Index: trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsAssertEventType.java
===================================================================
--- trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsAssertEventType.java	(revision 922)
+++ trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsAssertEventType.java	(revision 922)
@@ -0,0 +1,31 @@
+
+package de.ugoe.cs.autoquest.assertions;
+
+import de.ugoe.cs.autoquest.eventcore.IEventType;
+
+/**
+ * </p> Event type for TextEquals assertions. </p>
+ * 
+ * @version 1.0
+ * @author Steffen Herbold
+ */
+public class TextEqualsAssertEventType implements IEventType {
+
+    /**
+     * <p>
+     * Id for object serialization.
+     * </p>
+     */
+    private static final long serialVersionUID = 1L;
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.eventcore.IEventType#getName()
+     */
+    @Override
+    public String getName() {
+        return "TextEqualsAssertion";
+    }
+
+}
Index: trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsReplay.java
===================================================================
--- trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsReplay.java	(revision 922)
+++ trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/autoquest/assertions/TextEqualsReplay.java	(revision 922)
@@ -0,0 +1,92 @@
+package de.ugoe.cs.autoquest.assertions;
+
+import de.ugoe.cs.autoquest.IReplayDecorator;
+import de.ugoe.cs.autoquest.eventcore.IReplayable;
+import de.ugoe.cs.util.StringTools;
+
+/**
+ * <p>
+ * This class defines the replay for a textEquals assertion.
+ * </p>
+ * 
+ * @author Jeffrey Hall, Steffen Herbold
+ * @version 2.0
+ */
+public class TextEqualsReplay implements IReplayable {
+
+    /**
+     * <p>
+     * Reference value which is compared to the targets text.
+     * </p>
+     */
+    protected final String expectedValue;
+
+    /**
+     * <p>
+     * Target to which the text is compared.
+     * </p>
+     */
+    protected final String target;
+
+    /**
+     * <p>
+     * Id for object serialization.
+     * </p>
+     */
+    private static final long serialVersionUID = 1L;
+
+    /**
+     * <p>
+     * Constructor. Creates a new TextEqualsReplay.
+     * 
+     * @param expectedValue
+     *            expected string value
+     * @param target
+     *            string description of the target whose string value is compared to the expected
+     *            value
+     * @throws IllegalArgumentException
+     *             thrown if target is null
+     */
+    public TextEqualsReplay(String expectedValue, String target) {
+        if (target == null) {
+            throw new IllegalArgumentException("target must not be null");
+        }
+        this.expectedValue = expectedValue;
+        this.target = target;
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.eventcore.IReplayable#getReplay()
+     */
+    @Override
+    public String getReplay() {
+
+        String expectedValueTmp = StringTools.xmlEntityReplacement(expectedValue);
+
+        StringBuilder currentMsgStr = new StringBuilder(400);
+        currentMsgStr.append(" <textEquals expectedValue=\"" + expectedValueTmp + "\">");
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append("<target>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append(target);
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append("</target>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        currentMsgStr.append("</textEquals>");
+        currentMsgStr.append(StringTools.ENDLINE);
+        return currentMsgStr.toString();
+    }
+
+    /*
+     * (non-Javadoc)
+     * 
+     * @see de.ugoe.cs.autoquest.eventcore.IReplayable#getDecorator()
+     */
+    @Override
+    public IReplayDecorator getDecorator() {
+        return null;
+    }
+
+}
