Index: trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/AssertEventTest.java
===================================================================
--- trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/AssertEventTest.java	(revision 537)
+++ 	(revision )
@@ -1,38 +1,0 @@
-package de.ugoe.cs.quest.assertions;
-
-import org.junit.*;
-
-import de.ugoe.cs.quest.assertions.AssertEvent;
-import de.ugoe.cs.quest.eventcore.mock.MockReplayable;
-import static org.junit.Assert.*;
-
-/**
- * The class <code>AssertEventTest</code> contains tests for the class
- * <code>{@link AssertEvent}</code>.
- * 
- * @author Steffen Herbold
- * @version 1.0
- */
-public class AssertEventTest {
-
-	@Test
-	public void testAssertEvent_1() throws Exception {
-		String type = "typeString";
-
-		AssertEvent<MockReplayable> result = new AssertEvent<MockReplayable>(
-				type);
-
-		assertNotNull(result);
-		assertEquals(type, result.getType());
-	}
-
-	@Test(expected = java.security.InvalidParameterException.class)
-	public void testAssertEvent_2() throws Exception {
-
-		new AssertEvent<MockReplayable>(null);
-	}
-
-	public static void main(String[] args) {
-		new org.junit.runner.JUnitCore().run(AssertEventTest.class);
-	}
-}
Index: trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/FileEqualsReplayTest.java
===================================================================
--- trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/FileEqualsReplayTest.java	(revision 537)
+++ trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/FileEqualsReplayTest.java	(revision 548)
@@ -66,13 +66,4 @@
 	}
 
-	@Test
-	public void testGetTarget_1() throws Exception {
-		FileEqualsReplay fixture = new FileEqualsReplay("", "");
-
-		String result = fixture.getTarget();
-
-		assertEquals("targetNotUsed", result);
-	}
-
 	public static void main(String[] args) {
 		new org.junit.runner.JUnitCore().run(FileEqualsReplayTest.class);
Index: trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/TestAll.java
===================================================================
--- trunk/quest-core-assertions-test/src/test/java/de/ugoe/cs/quest/assertions/TestAll.java	(revision 537)
+++ 	(revision )
@@ -1,27 +1,0 @@
-package de.ugoe.cs.quest.assertions;
-
-import org.junit.runner.JUnitCore;
-import org.junit.runner.RunWith;
-import org.junit.runners.Suite;
-
-/**
- * The class <code>TestAll</code> builds a suite that can be used to run all
- * of the tests within its package as well as within any subpackages of its
- * package.
- *
- * @generatedBy CodePro at 12/21/11 11:53 AM
- * @author Steffen Herbold
- * @version 1.0
- */
-@RunWith(Suite.class)
-@Suite.SuiteClasses({
-	FileEqualsReplayTest.class,
-	TextEqualsReplayTest.class,
-	AssertEventTest.class
-})
-public class TestAll {
-
-	public static void main(String[] args) {
-		JUnitCore.runClasses(new Class[] { TestAll.class });
-	}
-}
