- Timestamp:
- 08/01/19 12:11:21 (5 years ago)
- 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 25 25 * 26 26 */ 27 //@Test27 @Test 28 28 public void test_SelectionDetection_01() throws Exception { 29 29 String input = … … 35 35 " Event selAction1 {}" + 36 36 " Event action3 {}" + 37 " Event action4 {}" + 37 38 " }" + 38 39 " Sequence sequence2 {" + … … 43 44 " Event selAction2 {}" + 44 45 " Event action3 {}" + 46 " Event action4 {}" + 45 47 " }" + 46 48 "}"; … … 56 58 " }" + 57 59 " Event action3 {}" + 60 " Event action4 {}" + 58 61 " }" + 59 62 " Sequence sequence3 {" + … … 66 69 " }" + 67 70 " Event action3 {}" + 71 " Event action4 {}" + 68 72 " }" + 69 73 "}"; … … 75 79 * 76 80 */ 77 //@Test81 @Test 78 82 public void test_SelectionDetection_02() throws Exception { 79 83 String input = … … 125 129 * 126 130 */ 127 //@Test131 @Test 128 132 public void test_SelectionDetection_03() throws Exception { 129 133 String input = … … 207 211 * 208 212 */ 209 //@Test213 @Test 210 214 public void test_SelectionDetection_04() throws Exception { 211 215 String input = … … 263 267 * 264 268 */ 265 //@Test269 @Test 266 270 public void test_OptionalDetection_01() throws Exception { 267 271 String input = … … 300 304 * 301 305 */ 302 //@Test306 @Test 303 307 public void test_OptionalDetection_02() throws Exception { 304 308 String input = … … 337 341 * 338 342 */ 339 //@Test343 @Test 340 344 public void test_OptionalDetection_03() throws Exception { 341 345 String input = … … 386 390 * 387 391 */ 388 //@Test392 @Test 389 393 public void test_OptionalDetection_04() throws Exception { 390 394 String input = … … 462 466 * 463 467 */ 464 //@Test468 @Test 465 469 public void test_OptionalDetection_05() throws Exception { 466 470 String input = … … 515 519 * 516 520 */ 517 //@Test521 @Test 518 522 public void test_OptionalDetection_06() throws Exception { 519 523 String input = … … 1392 1396 " Event action5 {}" + 1393 1397 " Event action6 {}" + 1394 " }" +1395 " }" +1396 "}";1397 1398 applySessionScopeRule(CondenseSimilarTasksRule.class, input, output);1399 }1400 1401 /**1402 * TODO: correct to let it run through1403 */1404 /*@Test1405 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 " }" +1470 1398 " }" + 1471 1399 " }" +
Note: See TracChangeset
for help on using the changeset viewer.