|
|
@@ -43,14 +43,14 @@ public class HammingTest {
|
|
43
|
43
|
|
|
44
|
44
|
@Ignore
|
|
45
|
45
|
@Test
|
|
46
|
|
- public void testValidatesFirstStrandNotLonger() throws IllegalArgumentException {
|
|
|
46
|
+ public void testValidatesFirstStrandNotLonger() {
|
|
47
|
47
|
thrown.expect(IllegalArgumentException.class);
|
|
48
|
48
|
Hamming.compute("AAAG", "AAA");
|
|
49
|
49
|
}
|
|
50
|
50
|
|
|
51
|
51
|
@Ignore
|
|
52
|
52
|
@Test
|
|
53
|
|
- public void testValidatesOtherStrandNotLonger() throws IllegalArgumentException {
|
|
|
53
|
+ public void testValidatesOtherStrandNotLonger() {
|
|
54
|
54
|
thrown.expect(IllegalArgumentException.class);
|
|
55
|
55
|
Hamming.compute("AAA", "AAAG");
|
|
56
|
56
|
}
|