Exemple #1
0
        // Setup Test Plan Continuation Panel Functions
        private void ButtonSetupTestPlanFinish_Click(object sender, EventArgs e)
        {
            ButtonColorAnimation(ButtonSetupTestPlanFinish, Color.LightGreen);

            CurrentPanel.Hide();
            PanelSetupTestPlan.Hide();
        }
Exemple #2
0
        private void ButtonTestCases_Click(object sender, EventArgs e)
        {
            PanelSetupTestPlan.Hide();

            if (CurrentPanel != null)
            {
                CurrentPanel.Hide();
            }

            PanelTestCases.Show();
            CurrentPanel = PanelTestCases;

            FillDataGridViewTestCases();
        }
Exemple #3
0
        private void ButtonSetupTestPlan_Click(object sender, EventArgs e)
        {
            TextBoxSetupTestPlanName.Text             = TestPlan.Name;
            RichTextBoxSetupTestPlanIntroduction.Text = TestPlan.Introduction;
            RichTextBoxSetupTestPlanEnvironment.Text  = TestPlan.SetupEnvironment;
            RichTextBoxSetupTestPlanScope.Text        = TestPlan.Scope;

            if (CurrentPanel != null)
            {
                CurrentPanel.Hide();
            }

            PanelSetupTestPlan.Show();
            CurrentPanel = PanelSetupTestPlan;
        }