We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dddd78f commit 336dab4Copy full SHA for 336dab4
1 file changed
org.bridgedb.bio/src/test/java/org/bridgedb/bio/DataSourceTxtTest.java
@@ -33,6 +33,7 @@
33
import java.util.Set;
34
35
import org.bridgedb.DataSource;
36
+import org.junit.jupiter.api.BeforeAll;
37
38
39
/**
@@ -41,6 +42,11 @@
41
42
*/
43
public class DataSourceTxtTest {
44
45
+ @BeforeAll
46
+ public static void setUpSources() {
47
+ if (DataSource.getDataSources().size() < 20) DataSourceTxt.init();
48
+ }
49
+
50
@org.junit.jupiter.api.Test
51
public void testUniqueSystemCodes() {
52
Set<String> codes = new HashSet<String>();
0 commit comments