public void DataTestLunghezza(string file1, string file2, int risposta1, int risposta2) { int lunghezza1 = BioinformaticaMetodi.Lunghezza(file1); int lunghezza2 = BioinformaticaMetodi.Lunghezza(file2); Assert.AreEqual(risposta1, lunghezza1); Assert.AreEqual(risposta2, lunghezza2); }
public void TestLunghezza() { int file1 = BioinformaticaMetodi.Lunghezza("sensibile.txt"); int file2 = BioinformaticaMetodi.Lunghezza("resistente.txt"); int risposta1 = 3901; int risposta2 = 3901; Assert.AreEqual(risposta1, file1); Assert.AreEqual(risposta2, file2); }
private void btnesegui_Click(object sender, RoutedEventArgs e) { txtrisultato.Text = ""; if (cmbscelta.SelectedItem == lunghezza) { txtrisultato.Text = BioinformaticaMetodi.Lunghezza(txtfile1.Text) + "\n" + BioinformaticaMetodi.Lunghezza(txtfile2.Text); } else if (cmbscelta.SelectedItem == errore) { txtrisultato.Text = BioinformaticaMetodi.PosizioneErrore(txtfile1.Text, txtfile2.Text).ToString(); } else if (cmbscelta.SelectedItem == identico) { txtrisultato.Text = BioinformaticaMetodi.DNAidentico(txtfile1.Text, txtfile2.Text); } else if (cmbscelta.SelectedItem == diversi) { txtrisultato.Text = BioinformaticaMetodi.CaratteriDiversi(txtfile1.Text, txtfile2.Text).ToString(); } }