Skip to content

Commit 6ea3f22

Browse files
add comments
1 parent 87bb0bc commit 6ea3f22

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

edu.cuny.hunter.streamrefactoring.tests/test cases/edu/cuny/hunter/streamrefactoring/ui/tests/ConvertStreamToParallelRefactoringTest.java

+9
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,9 @@ public void testNonInternalAPI3() throws Exception {
472472
Refactoring.CONVERT_SEQUENTIAL_STREAM_TO_PARALLEL, RefactoringStatus.OK, Collections.emptySet()));
473473
}
474474

475+
/**
476+
* related to #126
477+
*/
475478
public void testNonInternalAPI4() throws Exception {
476479
HashSet<Ordering> orderings = new HashSet<>();
477480
orderings.add(Ordering.UNORDERED);
@@ -482,6 +485,9 @@ public void testNonInternalAPI4() throws Exception {
482485
RefactoringStatus.ERROR, EnumSet.of(PreconditionFailure.INCONSISTENT_POSSIBLE_ORDERINGS)));
483486
}
484487

488+
/**
489+
* related to #126
490+
*/
485491
public void testNonInternalAPI5() throws Exception {
486492
HashSet<ExecutionMode> executionModes = new HashSet<>();
487493
executionModes .add(ExecutionMode.PARALLEL);
@@ -491,6 +497,9 @@ public void testNonInternalAPI5() throws Exception {
491497
RefactoringStatus.ERROR, EnumSet.of(PreconditionFailure.INCONSISTENT_POSSIBLE_EXECUTION_MODES)));
492498
}
493499

500+
/**
501+
* related to #126
502+
*/
494503
public void testNonInternalAPI6() throws Exception {
495504
HashSet<ExecutionMode> executionModes = new HashSet<>();
496505
executionModes.add(ExecutionMode.PARALLEL);

0 commit comments

Comments
 (0)