Index: trunk/autoquest-plugin-android-test/src/test/java/de/ugoe/cs/autoquest/plugin/android/ANDROIDLogParserTest.java
===================================================================
--- trunk/autoquest-plugin-android-test/src/test/java/de/ugoe/cs/autoquest/plugin/android/ANDROIDLogParserTest.java	(revision 1800)
+++ trunk/autoquest-plugin-android-test/src/test/java/de/ugoe/cs/autoquest/plugin/android/ANDROIDLogParserTest.java	(revision 1800)
@@ -0,0 +1,101 @@
+//   Copyright 2012 Georg-August-Universität Göttingen, Germany
+//
+//   Licensed under the Apache License, Version 2.0 (the "License");
+//   you may not use this file except in compliance with the License.
+//   You may obtain a copy of the License at
+//
+//       http://www.apache.org/licenses/LICENSE-2.0
+//
+//   Unless required by applicable law or agreed to in writing, software
+//   distributed under the License is distributed on an "AS IS" BASIS,
+//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+//   See the License for the specific language governing permissions and
+//   limitations under the License.
+
+package de.ugoe.cs.autoquest.plugin.android;
+
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.io.File;
+import java.util.Collection;
+import java.util.List;
+import java.util.logging.Level;
+
+import org.junit.Before;
+import org.junit.Test;
+
+import de.ugoe.cs.autoquest.eventcore.Event;
+import de.ugoe.cs.autoquest.eventcore.guimodel.GUIModel;
+import de.ugoe.cs.autoquest.eventcore.guimodel.IGUIElement;
+import de.ugoe.cs.autoquest.plugin.android.guimodel.ANDROIDGUIElement;
+import de.ugoe.cs.util.console.TextConsole;
+
+
+/**
+ * @author Florian Unger
+ */
+public class ANDROIDLogParserTest {
+
+	@Before
+	public void setUp() throws Exception {
+		new TextConsole(Level.FINEST);
+	}
+
+	@Test
+	public void test() {
+		AndroidLogParser parser = new AndroidLogParser();
+		parser.parseFile(new File(ClassLoader.getSystemResource("android_testRes_LogFile_2014_10_07.xml").getFile()));
+		
+		Collection<List<Event>> events = parser.getSequences();
+		
+		assertNotNull(events);
+        assertTrue(events.size() > 0);
+
+        System.err.println("{");
+        for (List<Event> session : events) {
+            System.err.println("  {");
+            for (Event event : session) {
+                System.err.print("    ");
+                System.err.print(event);
+                System.err.println(",");
+            }
+            System.err.println("  }");
+        }
+        System.err.println("}");
+        System.err.println("\n\n");
+
+        GUIModel guiModel = parser.getGuiModel();
+        assertNotNull(guiModel);
+
+        for (IGUIElement root : guiModel.getRootElements()) {
+            dumpGUIElement(root, guiModel, "");
+        }
+	}
+	
+	 /**
+     * 
+     */
+    private void dumpGUIElement(IGUIElement guiElement, GUIModel guiModel, String indent) {
+        assertTrue(guiElement instanceof ANDROIDGUIElement);
+
+        System.err.print(indent);
+        System.err.print(guiElement);
+
+        List<IGUIElement> children = guiModel.getChildren(guiElement);
+
+        if ((children != null) && (children.size() > 0)) {
+            System.err.println(" {");
+
+            for (IGUIElement child : children) {
+                dumpGUIElement(child, guiModel, indent + "  ");
+            }
+
+            System.err.print(indent);
+            System.err.print("}");
+        }
+
+        System.err.println();
+    }
+
+}
