Amazon.DNXCore.IntegrationTests.General.TestClockSkewCorrection C# (CSharp) Метод

TestClockSkewCorrection() публичный Метод

public TestClockSkewCorrection ( ) : void
Результат void
        public void TestClockSkewCorrection()
        {
            bool allPassed = true;
            foreach (var clientTest in clientTests)
            {
                try
                {
                    TestClient(clientTest);
                    Console.WriteLine("Client test succeeded");
                }
                catch
                {
                    Console.WriteLine("Client test FAILED");
                    allPassed = false;
                }
            }

            Assert.True(allPassed);
        }