BusinessLogic.Tests.UnitTests.LogicTests.UtilitiesTests.WinPercentageCalculatorTests.ItReturnsZeroWhenThereAreZeroGamesPlayed C# (CSharp) Method

ItReturnsZeroWhenThereAreZeroGamesPlayed() private method

private ItReturnsZeroWhenThereAreZeroGamesPlayed ( ) : void
return void
        public void ItReturnsZeroWhenThereAreZeroGamesPlayed()
        {
            var result = WinPercentageCalculator.CalculateWinPercentage(0, 0);

            Assert.That(result, Is.EqualTo(0));
        }