Exemple #1
0
	public void init()
	{
	  verified = false;
	  if (!SystemInformation.UserInteractive)
	  {
		  if (isUserInteractive != null) // is named something else on Mono
		  {
			  isUserInteractive.SetValue(null, true);
		  }
	  }

	  if (UseHidden)
	  {
		testDesktop = new Desktop("NUnitForms Test Desktop", DisplayHidden);
	  }

	  modal = new ModalFormTester();

	  BaseSetup();

	  mouse = new MouseController();
	  keyboard = new KeyboardController();

	  if (CurrentForm != null)
	  {
		currentForm.Show();
	  }
	  Setup();
	}