Index: branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/SmithWatermanRepeatedTest.java
===================================================================
--- branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/SmithWatermanRepeatedTest.java	(revision 1652)
+++ branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/SmithWatermanRepeatedTest.java	(revision 1654)
@@ -24,4 +24,6 @@
 		AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory
 				.create();
+		
+		assertNotNull(testalignment1);
 		testalignment1.align(ns1, ns2,submat,5);
 
@@ -44,4 +46,5 @@
 		AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory
 				.create();
+		assertNotNull(testalignment1);
 		testalignment1.align(ns1, ns2,submat,5);
 		assertTrue(testalignment1.getAlignmentScore()==5);
@@ -63,4 +66,5 @@
 		AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory
 				.create();
+		assertNotNull(testalignment1);
 		testalignment1.align(ns1, ns2,submat,4);
 		testalignment1.printDPMatrix();
@@ -90,6 +94,7 @@
 		AlignmentAlgorithm testalignment1 = AlignmentAlgorithmFactory
 				.create();
+		assertNotNull(testalignment1);
 		testalignment1.align(ns1, ns2,submat,3);
-		//assertTrue(testalignment1.getAlignmentScore()==7);
+		assertTrue(testalignment1.getAlignmentScore()==1.0);
 		
 		}
Index: branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/SequenceForTaskDetectionRuleAlignmentTest.java
===================================================================
--- branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/SequenceForTaskDetectionRuleAlignmentTest.java	(revision 1652)
+++ branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/temporalrelation/SequenceForTaskDetectionRuleAlignmentTest.java	(revision 1654)
@@ -97,5 +97,5 @@
             "}";
 
-        applySessionScopeRule(SequenceForTaskDetectionRule.class, input, output);
+        applySessionScopeRule(SequenceForTaskDetectionRuleAlignment.class, input, output);
     }
 
@@ -171,5 +171,5 @@
             "}";
 
-        applySessionScopeRule(SequenceForTaskDetectionRule.class, input, output);
+        applySessionScopeRule(SequenceForTaskDetectionRuleAlignment.class, input, output);
     }
 
