Index: /trunk/autoquest-core-events-test/src/test/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementTreeTest.java
===================================================================
--- /trunk/autoquest-core-events-test/src/test/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementTreeTest.java	(revision 1084)
+++ /trunk/autoquest-core-events-test/src/test/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIElementTreeTest.java	(revision 1085)
@@ -13,6 +13,6 @@
 
     @Test
-    public void testAdd() {
-        GUIElementTree tree = new GUIElementTree();
+    public void testAdd() throws Exception {
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         IGUIElementSpec spec = new MockGUIElementSpec();
         tree.add(10l, null, spec);
@@ -22,6 +22,6 @@
     
     @Test
-    public void testAddWithParent(){
-        GUIElementTree tree = new GUIElementTree();
+    public void testAddWithParent() throws Exception {
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         IGUIElementSpec parentspec = new MockGUIElementSpec();
         IGUIElementSpec spec = new MockGUIElementSpec();
@@ -36,6 +36,6 @@
 
     @Test
-    public void testFindExisting() {
-        GUIElementTree tree = new GUIElementTree();
+    public void testFindExisting() throws Exception {
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         IGUIElementSpec spec = new MockGUIElementSpec();
         tree.add(10l, 0l, spec);
@@ -46,12 +46,12 @@
     
     @Test
-    public void testFindNonExisting(){
-        GUIElementTree tree = new GUIElementTree();
+    public void testFindNonExisting() throws Exception {
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         assertEquals(tree.find(10l), null);
     }
 
     @Test
-    public void testRemoveSingleElement() {
-        GUIElementTree tree = new GUIElementTree();
+    public void testRemoveSingleElement() throws Exception {
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         IGUIElementSpec spec = new MockGUIElementSpec(); 
         tree.add(10l, null, spec);
@@ -62,6 +62,6 @@
     
     @Test
-    public void testRemoveWithChildElement(){
-        GUIElementTree tree = new GUIElementTree();
+    public void testRemoveWithChildElement() throws Exception {
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         IGUIElementSpec parentspec = new MockGUIElementSpec();
         IGUIElementSpec spec = new MockGUIElementSpec();
@@ -75,5 +75,5 @@
     @Test
     public void testRemoveNonExisting(){
-        GUIElementTree tree = new GUIElementTree();
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         assertEquals(0, tree.remove(10l));
     }
@@ -81,5 +81,5 @@
     @Test
     public void testGetGUIModel() {
-        GUIElementTree tree = new GUIElementTree();
+        GUIElementTree<Long> tree = new GUIElementTree<Long>();
         assertNotNull(tree.getGUIModel());
     }
