Changeset 685


Ignore:
Timestamp:
08/29/12 10:15:39 (12 years ago)
Author:
pharms
Message:
  • renamed interaction event list to correctly state, what it is, a list of sorted interaction events
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  
    1818 * @author Patrick Harms 
    1919 */ 
    20 public class InteractionEventListTest { 
     20public class SortedInteractionEventListTest { 
    2121 
    2222    /** 
     
    2626    public void testDifferentCombinationKeyCombinations() { 
    2727        List<Event> checkList = new ArrayList<Event>(); 
    28         InteractionEventList eventList = new InteractionEventList(); 
     28        SortedInteractionEventList eventList = new SortedInteractionEventList(); 
    2929 
    3030        IGUIElement guiElement = new AbstractDefaultGUIElement(null, null) { 
     
    4141            public String getPlatform() { 
    4242                return "TEST"; 
     43            } 
     44 
     45            @Override 
     46            public String getStringIdentifier() { 
     47                return "DUMMY"; 
    4348            } 
    4449 
     
    245250    public void testSeveralSubsequentKeyPressedEvents() { 
    246251        List<Event> checkList = new ArrayList<Event>(); 
    247         InteractionEventList eventList = new InteractionEventList(); 
     252        SortedInteractionEventList eventList = new SortedInteractionEventList(); 
    248253 
    249254        IGUIElement guiElement = new AbstractDefaultGUIElement(null, null) { 
     
    262267            } 
    263268 
     269            @Override 
     270            public String getStringIdentifier() { 
     271                return "DUMMY"; 
     272            } 
     273 
    264274        }; 
    265275 
Note: See TracChangeset for help on using the changeset viewer.