Beispiel #1
0
 private void SuccessButton_Click(object sender, EventArgs e)
 {
     clearAllTextBox();
     currentlyDisplayed = displayedData.success;
     dataGridView1.DataSource =  TestMergeAdapter.Adapt(mergeRes,mergeResultType.success);
     dataGridView1.Columns[0].Width = 180;
     dataGridView1.Columns[1].Width = 40;
     showBox(true, true);
     hideCopyOptions();
 }
Beispiel #2
0
 private void VBTestButton_Click(object sender, EventArgs e)
 {
     clearAllTextBox();
     dataGridView1.DataSource = TestCaseAdapter.Adapt(mergeRes, resultType.VB);
     dataGridView1.Columns[0].Width = 220;
     currentlyDisplayed = displayedData.VB;
     showBox(false, true);
     hideCopyOptions();
 }
Beispiel #3
0
 private void MissmatchButton_Click(object sender, EventArgs e)
 {
     clearAllTextBox();
     currentlyDisplayed = displayedData.missmatch;
     dataGridView1.DataSource = TestMergeAdapter.Adapt(mergeRes, mergeResultType.mismatch);
     dataGridView1.Columns[0].Width = 180;
     dataGridView1.Columns[1].Width = 40;
     showBox(true, true);
 }