Index: Src/GoogleApis.Tests/Apis/Utils/ExponentialBackOffTest.cs =================================================================== --- a/Src/GoogleApis.Tests/Apis/Utils/ExponentialBackOffTest.cs +++ b/Src/GoogleApis.Tests/Apis/Utils/ExponentialBackOffTest.cs @@ -63,7 +63,7 @@ } - /// An helper subtest to test invalid value given to the constructor. + /// A helper subtest to test invalid value given to the constructor. private void SubtestConstructor_InvalidValue(TimeSpan ts, int max = 10) { try @@ -113,7 +113,6 @@ Assert.That(avarage, Is.InRange(expectedMiliis - epsilon, expectedMiliis + epsilon)); } - /// Tests next back-off time span with specific maximum of retries. [Test] public void GetNextBackOff_MaxNumRetries() @@ -123,7 +122,8 @@ SubtestGetNextBackOff_MaxNumRetries(11); } - public void SubtestGetNextBackOff_MaxNumRetries(int max) + /// A helper test for testing the GetNextBackOff logic. + private void SubtestGetNextBackOff_MaxNumRetries(int max) { ExponentialBackOff backOff = new ExponentialBackOff(TimeSpan.Zero, max);