source: trunk/autoquest-core-events-test/src/test/java/de/ugoe/cs/autoquest/eventcore/guimodel/MockGUIElementSpec.java @ 1005

Last change on this file since 1005 was 1005, checked in by fglaser, 12 years ago
  • remove of GUIElementTree now returns 0 if no element was removed.
  • GUIElementTree test added (unfortunately the test class needs some artificial mock objects, that were also added)
  • Property svn:mime-type set to text/plain
File size: 384 bytes
Line 
1package de.ugoe.cs.autoquest.eventcore.guimodel;
2
3public class MockGUIElementSpec implements IGUIElementSpec {
4
5        @Override
6        public String getType() {
7                return "dummy";
8        }
9
10        @Override
11        public String[] getTypeHierarchy() {
12                return new String[]{getType()};
13        }
14
15        @Override
16        public boolean getSimilarity(IGUIElementSpec other) {
17                // TODO Auto-generated method stub
18                return false;
19        }
20
21}
Note: See TracBrowser for help on using the repository browser.