Changeset 817


Ignore:
Timestamp:
09/14/12 16:03:19 (12 years ago)
Author:
pharms
Message:
  • improved node comparison between iterations and other nodes as well as selections and other nodes
Location:
trunk/quest-core-tasktrees-test/src/test/java/de/ugoe/cs/quest/tasktrees/nodeequality
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-core-tasktrees-test/src/test/java/de/ugoe/cs/quest/tasktrees/nodeequality/IterationComparisonRuleTest.java

    r807 r817  
    6969        treeBuilder.setChild(iteration1, selection1); 
    7070         
    71         assertEquals(NodeEquality.SYNTACTICALLY_EQUAL, rule.compare(iteration1, iteration2)); 
    72         assertEquals(NodeEquality.SYNTACTICALLY_EQUAL, rule.compare(iteration2, iteration1)); 
     71        assertEquals(NodeEquality.LEXICALLY_EQUAL, rule.compare(iteration1, iteration2)); 
     72        assertEquals(NodeEquality.LEXICALLY_EQUAL, rule.compare(iteration2, iteration1)); 
    7373         
    7474        ISelection selection2 = treeNodeFactory.createNewSelection(); 
Note: See TracChangeset for help on using the changeset viewer.