Material.EBDeployer.DeployLogic.SmokeTests.SmokeTestService.RunTests C# (CSharp) Method

RunTests() public method

public RunTests ( ) : void
return void
        public void RunTests()
        {
            loggerProvider.GetLogger().Debug("Checking for valid test path.");
            if (!DoesValidTestPathExist())
            {
                loggerProvider.GetLogger().Debug("No path to smoke tests provided. Running internal smoke tests");
                RunInternalSmokeTests();
            }
            else
            {
                RunExternalSmokeTests();
            }
        }