Ignore:
Timestamp:
08/08/14 22:43:30 (10 years ago)
Author:
rkrimmel
Message:

Adding Debug output to find this freaking damn error.

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  
    2424                AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 
    2525                                .create(); 
     26                 
     27                assertNotNull(testalignment1); 
    2628                testalignment1.align(ns1, ns2,submat,5); 
    2729 
     
    4446                AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 
    4547                                .create(); 
     48                assertNotNull(testalignment1); 
    4649                testalignment1.align(ns1, ns2,submat,5); 
    4750                assertTrue(testalignment1.getAlignmentScore()==5); 
     
    6366                AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 
    6467                                .create(); 
     68                assertNotNull(testalignment1); 
    6569                testalignment1.align(ns1, ns2,submat,4); 
    6670                testalignment1.printDPMatrix(); 
     
    9094                AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory 
    9195                                .create(); 
     96                assertNotNull(testalignment1); 
    9297                testalignment1.align(ns1, ns2,submat,3); 
    93                 //assertTrue(testalignment1.getAlignmentScore()==7); 
     98                assertTrue(testalignment1.getAlignmentScore()==1.0); 
    9499                 
    95100                } 
  • branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/SequenceForTaskDetectionRuleAlignmentTest.java

    r1650 r1654  
    9797            "}"; 
    9898 
    99         applySessionScopeRule(SequenceForTaskDetectionRule.class, input, output); 
     99        applySessionScopeRule(SequenceForTaskDetectionRuleAlignment.class, input, output); 
    100100    } 
    101101 
     
    171171            "}"; 
    172172 
    173         applySessionScopeRule(SequenceForTaskDetectionRule.class, input, output); 
     173        applySessionScopeRule(SequenceForTaskDetectionRuleAlignment.class, input, output); 
    174174    } 
    175175 
Note: See TracChangeset for help on using the changeset viewer.