Automated UI Testing with Visual Studio 2012: Listing 3.

UIMap constructor launch code.

public partial class CalculatorUIMap
{

  ///  <summary >
  /// LaunchCalculator - Use 'LaunchCalculatorParams' to pass 
  /// parameters into this method.
  ///  </summary >
  public void LaunchCalculator()
    {
      // Launch '%SystemRoot%\System32\calc.exe'
      ApplicationUnderTest uICalculatorWindow = ApplicationUnderTest.Launch(
        this.LaunchCalculatorParams.UICalculatorWindowExePath, 
        this.LaunchCalculatorParams.UICalculatorWindowAlternateExePath);
    }

    public virtual LaunchCalculatorParams LaunchCalculatorParams
    {
      get
      {
        if ((this.mLaunchCalculatorParams == null))
        {
          this.mLaunchCalculatorParams = new LaunchCalculatorParams();
        }
        return this.mLaunchCalculatorParams;
      }
    }
    private LaunchCalculatorParams mLaunchCalculatorParams;

  }
  ///  <summary >
  /// Parameters to be passed into 'LaunchCalculator'
  ///  </summary >
  [GeneratedCode("Coded UITest Builder", "11.0.50727.1")]
  public class LaunchCalculatorParams
  {
    #region Fields
    ///  <summary >
    /// Launch '%SystemRoot%\System32\calc.exe'
    ///  </summary >
    public string UICalculatorWindowExePath = "C:\\Windows\\System32\\calc.exe";

    ///  <summary >
    /// Launch '%SystemRoot%\System32\calc.exe'
    ///  </summary >
    public string UICalculatorWindowAlternateExePath = 
      "%SystemRoot%\\System32\\calc.exe";
    #endregion
  }

About the Author

Mark Michaelis (http://IntelliTect.com/Mark) is the founder of IntelliTect and serves as the Chief Technical Architect and Trainer. Since 1996, he has been a Microsoft MVP for C#, Visual Studio Team System, and the Windows SDK and in 2007 he was recognized as a Microsoft Regional Director. He also serves on several Microsoft software design review teams, including C#, the Connected Systems Division, and VSTS. Mark speaks at developer conferences and has written numerous articles and books - Essential C# 5.0 is his most recent. Mark holds a Bachelor of Arts in Philosophy from the University of Illinois and a Masters in Computer Science from the Illinois Institute of Technology. When not bonding with his computer, Mark is busy with his family or training for another triathlon (having completed the Ironman in 2008). Mark lives in Spokane, Washington, with his wife Elisabeth and three children, Benjamin, Hanna and Abigail.

comments powered by Disqus

Featured

  • Microsoft Revamps Fledgling AutoGen Framework for Agentic AI

    Only at v0.4, Microsoft's AutoGen framework for agentic AI -- the hottest new trend in AI development -- has already undergone a complete revamp, going to an asynchronous, event-driven architecture.

  • IDE Irony: Coding Errors Cause 'Critical' Vulnerability in Visual Studio

    In a larger-than-normal Patch Tuesday, Microsoft warned of a "critical" vulnerability in Visual Studio that should be fixed immediately if automatic patching isn't enabled, ironically caused by coding errors.

  • Building Blazor Applications

    A trio of Blazor experts will conduct a full-day workshop for devs to learn everything about the tech a a March developer conference in Las Vegas keynoted by Microsoft execs and featuring many Microsoft devs.

  • Gradient Boosting Regression Using C#

    Dr. James McCaffrey from Microsoft Research presents a complete end-to-end demonstration of the gradient boosting regression technique, where the goal is to predict a single numeric value. Compared to existing library implementations of gradient boosting regression, a from-scratch implementation allows much easier customization and integration with other .NET systems.

  • Microsoft Execs to Tackle AI and Cloud in Dev Conference Keynotes

    AI unsurprisingly is all over keynotes that Microsoft execs will helm to kick off the Visual Studio Live! developer conference in Las Vegas, March 10-14, which the company described as "a must-attend event."

Subscribe on YouTube