Changeset 1654 for branches/autoquest-core-tasktrees-alignment-test/src
- Timestamp:
- 08/08/14 22:43:30 (10 years ago)
- Location:
- branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/SmithWatermanRepeatedTest.java
r1649 r1654 24 24 AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 25 25 .create(); 26 27 assertNotNull(testalignment1); 26 28 testalignment1.align(ns1, ns2,submat,5); 27 29 … … 44 46 AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 45 47 .create(); 48 assertNotNull(testalignment1); 46 49 testalignment1.align(ns1, ns2,submat,5); 47 50 assertTrue(testalignment1.getAlignmentScore()==5); … … 63 66 AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 64 67 .create(); 68 assertNotNull(testalignment1); 65 69 testalignment1.align(ns1, ns2,submat,4); 66 70 testalignment1.printDPMatrix(); … … 90 94 AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 91 95 .create(); 96 assertNotNull(testalignment1); 92 97 testalignment1.align(ns1, ns2,submat,3); 93 //assertTrue(testalignment1.getAlignmentScore()==7);98 assertTrue(testalignment1.getAlignmentScore()==1.0); 94 99 95 100 } -
branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/SequenceForTaskDetectionRuleAlignmentTest.java
r1650 r1654 97 97 "}"; 98 98 99 applySessionScopeRule(SequenceForTaskDetectionRule .class, input, output);99 applySessionScopeRule(SequenceForTaskDetectionRuleAlignment.class, input, output); 100 100 } 101 101 … … 171 171 "}"; 172 172 173 applySessionScopeRule(SequenceForTaskDetectionRule .class, input, output);173 applySessionScopeRule(SequenceForTaskDetectionRuleAlignment.class, input, output); 174 174 } 175 175
Note: See TracChangeset
for help on using the changeset viewer.