Index: trunk/quest-plugin-jfc-test/src/test/java/de/ugoe/cs/quest/plugin/jfc/JFCReplayIDCalculatorTest.java
===================================================================
--- trunk/quest-plugin-jfc-test/src/test/java/de/ugoe/cs/quest/plugin/jfc/JFCReplayIDCalculatorTest.java	(revision 806)
+++ trunk/quest-plugin-jfc-test/src/test/java/de/ugoe/cs/quest/plugin/jfc/JFCReplayIDCalculatorTest.java	(revision 810)
@@ -9,7 +9,4 @@
 import java.util.logging.Level;
 
-import javax.xml.parsers.DocumentBuilder;
-import javax.xml.parsers.DocumentBuilderFactory;
-
 import junit.framework.TestCase;
 
@@ -17,15 +14,13 @@
 import org.junit.Before;
 import org.junit.Test;
-import org.w3c.dom.Document;
-import org.w3c.dom.Node;
-import org.w3c.dom.NodeList;
+
+import static org.mockito.Mockito.*;
 
 import de.ugoe.cs.quest.eventcore.Event;
 import de.ugoe.cs.quest.eventcore.IEventTarget;
+import de.ugoe.cs.quest.eventcore.IEventType;
 import de.ugoe.cs.quest.plugin.jfc.eventcore.JFCEventId;
 import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement;
 import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElementSpec;
-import de.ugoe.cs.quest.plugin.mfc.eventcore.MFCEventType;
-import de.ugoe.cs.quest.plugin.mfc.guimodel.MFCToolBar;
 import de.ugoe.cs.util.console.TextConsole;
 
@@ -172,5 +167,5 @@
 		try{
 			JFCReplayIDCalculator calculator = new JFCReplayIDCalculator();
-			Event event = new Event(new MFCEventType(null), new MFCToolBar(null, null));
+			Event event = new Event(mock(IEventType.class), mock(IEventTarget.class));
 			
 			calculator.calculateReplayID(event);
