Ignore:
Timestamp:
08/01/19 12:11:21 (5 years ago)
Author:
pharms
Message:

Update to java 11

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-core-tasktrees-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/CondenseSimilarTasksRuleTest.java

    r2066 r2260  
    2525     * 
    2626     */ 
    27     //@Test 
     27    @Test 
    2828    public void test_SelectionDetection_01() throws Exception { 
    2929        String input = 
     
    3535            "    Event selAction1 {}" + 
    3636            "    Event action3 {}" + 
     37            "    Event action4 {}" + 
    3738            "  }" + 
    3839            "  Sequence sequence2 {" + 
     
    4344            "    Event selAction2 {}" + 
    4445            "    Event action3 {}" + 
     46            "    Event action4 {}" + 
    4547            "  }" + 
    4648            "}"; 
     
    5658            "    }" + 
    5759            "    Event action3 {}" + 
     60            "    Event action4 {}" + 
    5861            "  }" + 
    5962            "  Sequence sequence3 {" + 
     
    6669            "    }" + 
    6770            "    Event action3 {}" + 
     71            "    Event action4 {}" + 
    6872            "  }" + 
    6973            "}"; 
     
    7579     * 
    7680     */ 
    77     //@Test 
     81    @Test 
    7882    public void test_SelectionDetection_02() throws Exception { 
    7983        String input = 
     
    125129     * 
    126130     */ 
    127     //@Test 
     131    @Test 
    128132    public void test_SelectionDetection_03() throws Exception { 
    129133        String input = 
     
    207211     * 
    208212     */ 
    209     //@Test 
     213    @Test 
    210214    public void test_SelectionDetection_04() throws Exception { 
    211215        String input = 
     
    263267     * 
    264268     */ 
    265     //@Test 
     269    @Test 
    266270    public void test_OptionalDetection_01() throws Exception { 
    267271        String input = 
     
    300304     * 
    301305     */ 
    302     //@Test 
     306    @Test 
    303307    public void test_OptionalDetection_02() throws Exception { 
    304308        String input = 
     
    337341     * 
    338342     */ 
    339     //@Test 
     343    @Test 
    340344    public void test_OptionalDetection_03() throws Exception { 
    341345        String input = 
     
    386390     * 
    387391     */ 
    388     //@Test 
     392    @Test 
    389393    public void test_OptionalDetection_04() throws Exception { 
    390394        String input = 
     
    462466     * 
    463467     */ 
    464     //@Test 
     468    @Test 
    465469    public void test_OptionalDetection_05() throws Exception { 
    466470        String input = 
     
    515519     * 
    516520     */ 
    517     //@Test 
     521    @Test 
    518522    public void test_OptionalDetection_06() throws Exception { 
    519523        String input = 
     
    13921396            "      Event action5 {}" + 
    13931397            "      Event action6 {}" + 
    1394             "    }" + 
    1395             "  }" + 
    1396             "}"; 
    1397  
    1398         applySessionScopeRule(CondenseSimilarTasksRule.class, input, output); 
    1399     } 
    1400  
    1401     /** 
    1402      * TODO: correct to let it run through 
    1403      */ 
    1404     /*@Test 
    1405     public void test_IterationPreservation_07() throws Exception { 
    1406         String input = 
    1407             "UserSession {" + 
    1408             "  Sequence sequence1 {" + 
    1409             "    Sequence sequence2 {" + 
    1410             "      Event action1 {}" + 
    1411             "      Event action2 {}" + 
    1412             "    }" + 
    1413             "    Event action3 {}" + 
    1414             "  }" + 
    1415             "  Sequence sequence3 {" + 
    1416             "    Sequence sequence4 {" + 
    1417             "      Sequence sequence2 {" + 
    1418             "        Event action1 {}" + 
    1419             "        Event action2 {}" + 
    1420             "      }" + 
    1421             "      Iteration it1 {" + 
    1422             "        Event inserted1 {}" + 
    1423             "      }" + 
    1424             "    }" + 
    1425             "    Iteration it2 {" + 
    1426             "      Sequence sequence5 {" + 
    1427             "        Event inserted2 {}" + 
    1428             "        Event action3 {}" + 
    1429             "      }" + 
    1430             "      Sequence sequence5 {" + 
    1431             "        Event inserted2 {}" + 
    1432             "        Event action3 {}" + 
    1433             "      }" + 
    1434             "    }" + 
    1435             "  }" + 
    1436             "}"; 
    1437  
    1438         String output = 
    1439             "UserSession {" + 
    1440             "  Selection sel1 {" + 
    1441             "    Sequence sequence1 {" + 
    1442             "      Sequence sequence2 {" + 
    1443             "        Event action1 {}" + 
    1444             "        Event action2 {}" + 
    1445             "      }" + 
    1446             "      Event action3 {}" + 
    1447             "    }" + 
    1448             "  }" + 
    1449             "  Selection sel1 {" + 
    1450             "    Sequence sequence3 {" + 
    1451             "      Sequence sequence4 {" + 
    1452             "        Sequence sequence2 {" + 
    1453             "          Event action1 {}" + 
    1454             "          Event action2 {}" + 
    1455             "        }" + 
    1456             "        Iteration it1 {" + 
    1457             "          Event inserted1 {}" + 
    1458             "        }" + 
    1459             "      }" + 
    1460             "      Iteration it2 {" + 
    1461             "        Sequence sequence5 {" + 
    1462             "          Event inserted2 {}" + 
    1463             "          Event action3 {}" + 
    1464             "        }" + 
    1465             "        Sequence sequence5 {" + 
    1466             "          Event inserted2 {}" + 
    1467             "          Event action3 {}" + 
    1468             "        }" + 
    1469             "      }" + 
    14701398            "    }" + 
    14711399            "  }" + 
Note: See TracChangeset for help on using the changeset viewer.