public void GetAvailableAnnotsTest() { string[] annotFiles = PerseusUtils.GetAnnotFiles(); Assert.Inconclusive("Should be moved to integration tests, using conf"); //[DeploymentItem("conf", "conf")] string[] baseNames; string[] files; string[][] annots = PerseusUtils.GetAvailableAnnots(out baseNames, out files); Assert.AreEqual(3, files.Length); Assert.AreEqual(3, baseNames.Length); Assert.AreEqual(3, annots.Length); CollectionAssert.AreEqual(new[] { "ENSG", "UniProt", "ENSG" }, baseNames); CollectionAssert.AreEqual(new[] { "Chromosome", "Base pair index", "Orientation" }, annots[0]); }