AWSSDK_DotNet.IntegrationTests.Tests.General.TestClockSkewCorrection C# (CSharp) Method

TestClockSkewCorrection() private method

private TestClockSkewCorrection ( ) : void
return void
        public void TestClockSkewCorrection()
        {
            VerifyClockSkewSetting();

            bool allPassed = true;
            foreach (var clientTest in clientTests)
            {
                try
                {
                    TestClient(clientTest.Client, clientTest.Method, clientTest.Request);
                    Console.WriteLine("Client test succeeded");
                }
                catch
                {
                    Console.WriteLine("Client test FAILED");
                    allPassed = false;
                }
            }

            Assert.IsTrue(allPassed);
        }