Skip to content
Snippets Groups Projects
Commit a754fca3 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

removing test that is redundant

parent c90d6332
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!386Resolve "Continous integration tests"
......@@ -73,26 +73,6 @@ public class DrugbankHTMLParserTest extends AnnotationTestFunctions {
}
}
@Test
public void test2FindDrug() throws Exception {
try {
Drug test = drugBankHTMLParser.findDrug("diazoxide");
assertNotNull(test);
assertEquals("Diazoxide", test.getName());
assertEquals("DB01119", test.getSources().get(0).getResource());
assertTrue(test.getBloodBrainBarrier().equalsIgnoreCase("YES"));
boolean res = test.getDescription().contains(
"A benzothiadiazine derivative that is a peripheral vasodilator used for hypertensive emergencies. It lacks diuretic effect, apparently because it lacks a sulfonamide group. [PubChem]");
assertTrue(res);
assertEquals(6, test.getTargets().size());
assertTrue(test.getApproved());
} catch (Exception e) {
e.printStackTrace();
throw e;
}
}
@Test
public void testFindRapamycin() throws Exception {
try {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment