public void GetLosers_Returns_The_Player_With_The_Lowest_Hand_When_There_Is_No_Tie()
        {
            var players = new List <Player> {
                _playerWithFlush, _playerWithFullHouse
            };

            var losers = PlayerHandComparer.GetLosers(players);

            Assert.AreEqual(1, losers.Count);
            Assert.Contains(_playerWithFlush, losers);
        }
Esempio n. 2
0
 public void TestCleanup()
 {
     _target = null;
 }