private Sequence upSeq_fer1_maize;
+ private Sequence noUpSeq_fer1_maize;
+
// same set up as for structurechooser test
@BeforeMethod(alwaysRun = true)
upSeq_fer1_maize
.addDBRef(new DBRefEntry("UNIPROT", "0", "P27787", null, true));
upSeq_fer1_maize.createDatasetSequence();
+ noUpSeq_fer1_maize = new Sequence("O80429_MAIZE","MAATALSMSILRAPPPCFSSPLRLRVAVAKPLAAPMRRQLLRAQATYNVKLITPEGEVELQVPDDVYILDFAEEEGIDLPFSCRAGSCSSCAGKVVSGSVDQSDQSFLNDNQVADGWVLTCAAYPTSDVVIETHKEDDLL");
+ noUpSeq_fer1_maize.setDescription("Feredoxin from a Maize");
+ noUpSeq_fer1_maize.createDatasetSequence();
}
upSeq = null;
upSeq_r1ab = null;
upSeq_fer1_maize = null;
+ noUpSeq_fer1_maize = null;
+
}
@SuppressWarnings("deprecation")
{ testUpSeq });
}
+
+ @Test
+ public void testTdbWithNoUpSeq()
+ {
+ // verify that a
+ ThreeDBStructureChooserQuerySource tdbquery = new ThreeDBStructureChooserQuerySource();
+
+ Assert.fail("Not yet implemented.");
+ }
@DataProvider(name = "testUpSeqs")
public Object[][] testUpSeqs() throws Exception
{
setUp();
return new Object[][] { { upSeq }, { upSeq_insulin }, { upSeq_r1ab },
- { upSeq_fer1_maize } };
+ { upSeq_fer1_maize }, {noUpSeq_fer1_maize }};
}
@Test(groups = { "Functional" })