public void createPedigreesTest() { PedigreeCreator target = new PedigreeCreator(); // TODO: Initialize to an appropriate value string inputFile = string.Empty; // TODO: Initialize to an appropriate value string OutputFolder = string.Empty; // TODO: Initialize to an appropriate value target.createPedigrees(inputFile, OutputFolder); Assert.Inconclusive("A method that does not return a value cannot be verified."); }
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) { PedigreeCreator pc = new PedigreeCreator(); pc.createPedigrees(inputFile, OutputFolder); upload d = new upload(pc, inputFile, OutputFolder); d.ProgressChanged += new ProgressChangedEventHandler(progressB); d.processPedigreesOnBoadicea(OutputFolder); }