Changeset 685 for trunk/quest-core-events-test/src
- Timestamp:
- 08/29/12 10:15:39 (12 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-core-events-test/src/test/java/de/ugoe/cs/quest/eventcore/gui/SortedInteractionEventListTest.java
r678 r685 18 18 * @author Patrick Harms 19 19 */ 20 public class InteractionEventListTest {20 public class SortedInteractionEventListTest { 21 21 22 22 /** … … 26 26 public void testDifferentCombinationKeyCombinations() { 27 27 List<Event> checkList = new ArrayList<Event>(); 28 InteractionEventList eventList = newInteractionEventList();28 SortedInteractionEventList eventList = new SortedInteractionEventList(); 29 29 30 30 IGUIElement guiElement = new AbstractDefaultGUIElement(null, null) { … … 41 41 public String getPlatform() { 42 42 return "TEST"; 43 } 44 45 @Override 46 public String getStringIdentifier() { 47 return "DUMMY"; 43 48 } 44 49 … … 245 250 public void testSeveralSubsequentKeyPressedEvents() { 246 251 List<Event> checkList = new ArrayList<Event>(); 247 InteractionEventList eventList = newInteractionEventList();252 SortedInteractionEventList eventList = new SortedInteractionEventList(); 248 253 249 254 IGUIElement guiElement = new AbstractDefaultGUIElement(null, null) { … … 262 267 } 263 268 269 @Override 270 public String getStringIdentifier() { 271 return "DUMMY"; 272 } 273 264 274 }; 265 275
Note: See TracChangeset
for help on using the changeset viewer.