public void SetUp()
		{
			project = new NUnitProject( "path" );
			project.Configs.Add( "Debug" );
			project.Configs.Add( "Release" );
			dlg = new AddConfigurationDialog( project );
			this.Form = dlg;
		}
Beispiel #2
0
 public void SetUp()
 {
     project = new NUnitProject("path");
     project.Configs.Add("Debug");
     project.Configs.Add("Release");
     dlg       = new AddConfigurationDialog(project);
     this.Form = dlg;
 }
Beispiel #3
0
 public void SetUp()
 {
     project = new NUnitProject("path");
     project.Configs.Add("Debug");
     project.Configs.Add("Release");
     dlg    = new AddConfigurationDialog(project);
     tester = new FormTester(dlg);
 }
 public void SetUp()
 {
     dlg            = new AddConfigurationDialog();
     dlg.ConfigList = new string[] { "Debug", "Release" };
     this.Form      = dlg;
 }
		public void SetUp()
		{
            dlg = new AddConfigurationDialog();
            dlg.ConfigList = new string[] { "Debug", "Release" };
            this.Form = dlg;
		}