source: branches/autoquest-core-tasktrees-alignment-test/src/test/java/de/ugoe/cs/autoquest/tasktrees/alignment/algorithms/SmithWatermanRepeatedTest.java @ 1648

Last change on this file since 1648 was 1648, checked in by rkrimmel, 10 years ago

Adding a few Testclasses.

File size: 540 bytes
Line 
1package de.ugoe.cs.autoquest.tasktrees.alignment.algorithms;
2
3import static org.junit.Assert.*;
4
5import org.junit.Test;
6
7public class SmithWatermanRepeatedTest {
8
9        @Test
10        public void testGetMaxScore() {
11                fail("Not yet implemented");
12        }
13
14        @Test
15        public void testGetAlignmentScore() {
16                fail("Not yet implemented");
17        }
18
19        @Test
20        public void testGetMatches() {
21                fail("Not yet implemented");
22        }
23
24        @Test
25        public void testGetAlignment() {
26                fail("Not yet implemented");
27        }
28
29        @Test
30        public void testAlign() {
31                fail("Not yet implemented");
32        }
33
34}
Note: See TracBrowser for help on using the repository browser.