Tests.RetryHelperTest.TestDefaultInstance C# (CSharp) Method

TestDefaultInstance() private method

private TestDefaultInstance ( ) : void
return void
        public void TestDefaultInstance()
        {
            Expect(RetryHelper.Instance.DefaultMaxTryCount, EqualTo(int.MaxValue));
            Expect(RetryHelper.Instance.DefaultMaxTryTime, EqualTo(TimeSpan.MaxValue));
            Expect(RetryHelper.Instance.DefaultTryInterval, EqualTo(TimeSpan.FromMilliseconds(500)));
        }