Automobile.Mobile.Framework.UnitTests.Helpers.MobileDeviceDummy.BeginAutomation C# (CSharp) Method

BeginAutomation() public method

public BeginAutomation ( ) : void
return void
        public override void BeginAutomation()
        {
            _thread = new Thread(base.BeginAutomation);
            _thread.Start();
            while (!_thread.IsAlive);
        }

Usage Example

Example #1
0
 public void FixtureSetup()
 {
     Local = new MobileDeviceDummy();
     Local.BeginAutomation();
 }