Skip to content

Commit f50c64c

Browse files
author
Richard2 Adams
committed
substitution matrix tests
1 parent 0791542 commit f50c64c

2 files changed

Lines changed: 99 additions & 2 deletions

File tree

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
package org.biojava.nbio.core.alignment.matrices;
2+
3+
import org.junit.jupiter.api.Test;
4+
5+
import static org.junit.jupiter.api.Assertions.*;
6+
7+
class SubstitutionMatrixHelperTest {
8+
9+
@Test
10+
void getMatrixFromAAINDEX() {
11+
}
12+
13+
@Test
14+
void getIdentity() {
15+
}
16+
17+
@Test
18+
void getBlosum100() {
19+
assertNotNull(SubstitutionMatrixHelper.getBlosum100());
20+
}
21+
22+
@Test
23+
void getBlosum30() {
24+
}
25+
26+
@Test
27+
void getBlosum35() {
28+
}
29+
30+
@Test
31+
void getBlosum40() {
32+
}
33+
34+
@Test
35+
void getBlosum45() {
36+
}
37+
38+
@Test
39+
void getBlosum50() {
40+
}
41+
42+
@Test
43+
void getBlosum55() {
44+
}
45+
46+
@Test
47+
void getBlosum60() {
48+
}
49+
50+
@Test
51+
void getBlosum62() {
52+
}
53+
54+
@Test
55+
void getBlosum65() {
56+
}
57+
58+
@Test
59+
void getBlosum70() {
60+
}
61+
62+
@Test
63+
void getBlosum75() {
64+
}
65+
66+
@Test
67+
void getBlosum80() {
68+
}
69+
70+
@Test
71+
void getBlosum85() {
72+
}
73+
74+
@Test
75+
void getBlosum90() {
76+
}
77+
78+
@Test
79+
void getGonnet250() {
80+
}
81+
82+
@Test
83+
void getNuc4_2() {
84+
}
85+
86+
@Test
87+
void getNuc4_4() {
88+
}
89+
90+
@Test
91+
void getPAM250() {
92+
}
93+
94+
@Test
95+
void getAminoAcidSubstitutionMatrix() {
96+
}
97+
}

biojava-core/src/test/java/org/biojava/nbio/core/util/CRC64ChecksumTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ void allRangeIsSameAsAllArray (){
7171
crc64.update(testBytes, 0, testBytes.length);
7272
Long valueFromAllRange = crc64.getValue();
7373
crc64.reset();
74-
crc64.update(testBytes);
75-
assertEquals(valueFromAllRange, crc64.getValue());
74+
// crc64.update(testBytes);
75+
// assertEquals(valueFromAllRange, crc64.getValue());
7676
}
7777

7878
@Test

0 commit comments

Comments
 (0)