Skip to content

Commit

Permalink
Release progV3.5.0 and algV9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptzou committed Mar 21, 2024
1 parent 310ea0e commit b00342c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .latest-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20240310074104
20240321062349
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public void testGetDrugResistAlgorithms() {
@Test
public void testGetDrugResistAlgorithms2() {
List<String> algoNames = new ArrayList<>();
algoNames.add("HIVDB_9.5.1");
algoNames.add("HIVDB_9.6");
algoNames.add("Rega_10.0");
algoNames.add("ANRS_30");

Expand All @@ -251,16 +251,16 @@ public void testGetDrugResistAlgorithms2() {

@Test
public void testGetDrugResistAlgorithm() {
DrugResistanceAlgorithm<HIV> algo = hiv.getDrugResistAlgorithm("HIVDB_9.5.1");
DrugResistanceAlgorithm<HIV> algo = hiv.getDrugResistAlgorithm("HIVDB_9.6");
assertNotNull(algo);
assertEquals(algo.getFamily(), "HIVDB");
}

@Test
public void testGetDrugResistAlgorithm2() {
DrugResistanceAlgorithm<HIV> algo = hiv.getDrugResistAlgorithm("HIVDB", "9.5.1");
DrugResistanceAlgorithm<HIV> algo = hiv.getDrugResistAlgorithm("HIVDB", "9.6");
assertNotNull(algo);
assertEquals(algo.getVersion(), "9.5.1");
assertEquals(algo.getVersion(), "9.6");
}


Expand Down

0 comments on commit b00342c

Please sign in to comment.