Index: /trunk/autoquest-core-assertions/.classpath
===================================================================
--- /trunk/autoquest-core-assertions/.classpath	(revision 886)
+++ /trunk/autoquest-core-assertions/.classpath	(revision 886)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" output="target/classes" path="src/main/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="src" output="target/test-classes" path="src/test/java">
+		<attributes>
+			<attribute name="optional" value="true"/>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
+		<attributes>
+			<attribute name="maven.pomderived" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="output" path="target/classes"/>
+</classpath>
Index: /trunk/autoquest-core-assertions/.project
===================================================================
--- /trunk/autoquest-core-assertions/.project	(revision 886)
+++ /trunk/autoquest-core-assertions/.project	(revision 886)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>quest-core-assertions</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.jdt.core.javabuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.m2e.core.maven2Builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.m2e.core.maven2Nature</nature>
+		<nature>org.eclipse.jdt.core.javanature</nature>
+	</natures>
+</projectDescription>
Index: /trunk/autoquest-core-assertions/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- /trunk/autoquest-core-assertions/.settings/org.eclipse.jdt.core.prefs	(revision 886)
+++ /trunk/autoquest-core-assertions/.settings/org.eclipse.jdt.core.prefs	(revision 886)
@@ -0,0 +1,5 @@
+eclipse.preferences.version=1
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
+org.eclipse.jdt.core.compiler.compliance=1.6
+org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
+org.eclipse.jdt.core.compiler.source=1.6
Index: /trunk/autoquest-core-assertions/.settings/org.eclipse.m2e.core.prefs
===================================================================
--- /trunk/autoquest-core-assertions/.settings/org.eclipse.m2e.core.prefs	(revision 886)
+++ /trunk/autoquest-core-assertions/.settings/org.eclipse.m2e.core.prefs	(revision 886)
@@ -0,0 +1,4 @@
+activeProfiles=
+eclipse.preferences.version=1
+resolveWorkspaceProjects=true
+version=1
Index: /trunk/autoquest-core-assertions/pom.xml
===================================================================
--- /trunk/autoquest-core-assertions/pom.xml	(revision 886)
+++ /trunk/autoquest-core-assertions/pom.xml	(revision 886)
@@ -0,0 +1,20 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+  <parent>
+    <groupId>de.ugoe.cs.quest</groupId>
+    <artifactId>quest</artifactId>
+    <version>0.0.1-SNAPSHOT</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>quest-core-assertions</artifactId>
+  <name>quest-core-assertions</name>
+	<scm>
+		<url>${quest-scm-trunk-dir}/quest-core-assertions</url>
+	</scm>
+	<dependencies>
+		<dependency>
+			<groupId>de.ugoe.cs.quest</groupId>
+			<artifactId>quest-core-events</artifactId>
+			<version>${project.parent.version}</version>
+		</dependency>
+	</dependencies>
+</project>
Index: /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEventType.java
===================================================================
--- /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEventType.java	(revision 886)
+++ /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsAssertEventType.java	(revision 886)
@@ -0,0 +1,33 @@
+
+package de.ugoe.cs.quest.assertions;
+
+import de.ugoe.cs.quest.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.quest.eventcore.IEventType#getName()
+     */
+    @Override
+    public String getName() {
+        return "FileEqualsAssertion";
+    }
+
+}
Index: /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsReplay.java
===================================================================
--- /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsReplay.java	(revision 886)
+++ /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/FileEqualsReplay.java	(revision 886)
@@ -0,0 +1,89 @@
+package de.ugoe.cs.quest.assertions;
+
+import de.ugoe.cs.quest.IReplayDecorator;
+import de.ugoe.cs.quest.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.quest.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.quest.eventcore.IReplayable#getDecorator()
+     */
+    @Override
+    public IReplayDecorator getDecorator() {
+        return null;
+    }
+
+}
Index: /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsAssertEventType.java
===================================================================
--- /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsAssertEventType.java	(revision 886)
+++ /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsAssertEventType.java	(revision 886)
@@ -0,0 +1,31 @@
+
+package de.ugoe.cs.quest.assertions;
+
+import de.ugoe.cs.quest.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.quest.eventcore.IEventType#getName()
+     */
+    @Override
+    public String getName() {
+        return "TextEqualsAssertion";
+    }
+
+}
Index: /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsReplay.java
===================================================================
--- /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsReplay.java	(revision 886)
+++ /trunk/autoquest-core-assertions/src/main/java/de/ugoe/cs/quest/assertions/TextEqualsReplay.java	(revision 886)
@@ -0,0 +1,92 @@
+package de.ugoe.cs.quest.assertions;
+
+import de.ugoe.cs.quest.IReplayDecorator;
+import de.ugoe.cs.quest.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.quest.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.quest.eventcore.IReplayable#getDecorator()
+     */
+    @Override
+    public IReplayDecorator getDecorator() {
+        return null;
+    }
+
+}
