BusinessLogic.Tests.UnitTests.LogicTests.NemesesTests.NemesisHistoryRetrieverTests.GetRecentNemesisChangesTests.ItDoesntReturnTheSameMinionPlayerMoreThanOnce C# (CSharp) Method

ItDoesntReturnTheSameMinionPlayerMoreThanOnce() private method

private ItDoesntReturnTheSameMinionPlayerMoreThanOnce ( ) : void
return void
        public void ItDoesntReturnTheSameMinionPlayerMoreThanOnce()
        {
            List<NemesisChange> nemesisChanges = nemesisHistoryRetriever.GetRecentNemesisChanges(4);

            Assert.AreEqual(1, nemesisChanges.Count(nemesis => nemesis.MinionPlayerId == repeatedMinionPlayerId));
        }