Exemplo n.º 1
0
		private void editConfigurationsMenuItem_Click( object sender, System.EventArgs e )
		{
			using( ConfigurationEditor editor = new ConfigurationEditor( TestProject ) )
			{
				this.Site.Container.Add( editor );
				editor.ShowDialog();
			}

            LoadOrReloadTestAsNeeded();
		}
Exemplo n.º 2
0
        public static void Edit(NUnitProject project)
        {
            ConfigurationEditor editor = new ConfigurationEditor(project);

            editor.ShowDialog();
        }
Exemplo n.º 3
0
 private void editConfigsButton_Click(object sender, System.EventArgs e)
 {
     using( ConfigurationEditor editor = new ConfigurationEditor( project ) )
     {
         this.Site.Container.Add( editor );
         editor.ShowDialog();
     }
     configComboBox_Populate();
 }
Exemplo n.º 4
0
        private void editConfigurationsMenuItem_Click( object sender, System.EventArgs e )
        {
            /*2013-1-12:NUnit.Gui.ArxNet.Tests.NUnitFormArxNetTests.ShowModalDialog���Լ�*/
            if (TestProject == null) return;
            if (this.Site == null) return;
            if (this.Site.Container == null) return;
            /*2013-1-12:NUnit.Gui.ArxNet.Tests.NUnitFormArxNetTests.ShowModalDialog���Լ�*/

            using( ConfigurationEditor editor = new ConfigurationEditor( TestProject ) )
            {
                this.Site.Container.Add( editor );
                editor.ShowDialog();
            }

            LoadOrReloadTestAsNeeded();
        }