AppUpdater.Tests.AutoUpdaterTests.Start_CheckForUpdatesOnStart C# (CSharp) Method

Start_CheckForUpdatesOnStart() private method

private Start_CheckForUpdatesOnStart ( ) : void
return void
        public void Start_CheckForUpdatesOnStart()
        {
            autoUpdater.SecondsBetweenChecks = 10000;

            autoUpdater.Start();
            Thread.Sleep(1000);

            updateManager.AssertWasCalled(x => x.CheckForUpdate());
        }