void given_a_4_players_preflop_betting_round()
        {
            BettingRound round = null;
            Position dealer = null, sb = null, bb = null, utg = null;

            before = () =>
            {
                var playerStub = new Player();
                var fearfulPlayer = new Player();

                utg = new Position(playerStub);
                bb = new Position(fearfulPlayer);
                sb = new Position(playerStub);
                dealer = new Position(playerStub);

                var positions = new Positions(dealer, sb, bb, utg);
                round = new BettingRound(new Pot(), positions);
            };

            context["given big blind is so fearful"] = () =>
            {
                context["that everyone run away"] = () =>
                {
                    before = () =>
                        {
                            round.PlaceAction(Action.Fold(utg));
                            round.PlaceAction(Action.Fold(dealer));
                            round.PlaceAction(Action.Fold(sb));
                        };

                    it["big blind must not act"] = expect<EndOfRoundException>(() =>
                        round.PlaceAction(Action.Fold(bb)));

                    it["big blind wins the pot"] = () =>
                        round.Pot.Winner.should_be(bb.Player);
                };
            };
        }
Ejemplo n.º 2
0
        void given_a_4_players_preflop_betting_round()
        {
            BettingRound round = null;
            Position dealer = null, sb = null, bb = null, utg = null;

            before = () =>
            {
                var playerStub = new Player();

                utg = new Position(playerStub);
                bb = new Position(playerStub);
                sb = new Position(playerStub);
                dealer = new Position(playerStub);

                var positions = new Positions(dealer, sb, bb, utg);
                round = new BettingRound(new Pot(), positions);
            };

            context["given betting round just started"] = () =>
            {
                it["under the gun may act"] = () =>
                    round.PlaceAction(Action.Call(utg));

                it["dealer must not act"] = expect<OutOfTurnException>(() =>
                    round.PlaceAction(Action.Fold(dealer)));

                it["small blind must not act"] = expect<OutOfTurnException>(() =>
                    round.PlaceAction(Action.Call(sb)));

                it["big blind must not act"] = expect<OutOfTurnException>(() =>
                    round.PlaceAction(Action.Fold(bb)));

                context["given under the gun acted"] = () =>
                {
                    before = () => round.PlaceAction(Action.Call(utg));

                    it["dealer may act"] = () =>
                        round.PlaceAction(Action.Call(dealer));

                    it["under the gun must not act"] = expect<OutOfTurnException>(() =>
                        round.PlaceAction(Action.Fold(utg)));

                    it["small blind must not act"] = expect<OutOfTurnException>(() =>
                        round.PlaceAction(Action.Call(sb)));

                    it["big blind must not act"] = expect<OutOfTurnException>(() =>
                        round.PlaceAction(Action.Fold(bb)));

                    context["given dealer acted"] = () =>
                    {
                        before = () => round.PlaceAction(Action.Call(dealer));

                        it["small blind may act"] = () =>
                            round.PlaceAction(Action.Call(sb));

                        it["big blind must not act"] = expect<OutOfTurnException>(() =>
                            round.PlaceAction(Action.Fold(bb)));

                        it["under the gun must not act"] = expect<OutOfTurnException>(() =>
                            round.PlaceAction(Action.Call(utg)));

                        it["dealer must not act"] = expect<OutOfTurnException>(() =>
                            round.PlaceAction(Action.Fold(dealer)));

                        context["given small blind acted"] = () =>
                        {
                            before = () => round.PlaceAction(Action.Call(sb));

                            it["big blind may act"] = () =>
                                round.PlaceAction(Action.Call(bb));

                            it["under the gun must not act"] = expect<OutOfTurnException>(() =>
                                round.PlaceAction(Action.Fold(utg)));

                            it["dealer must not act"] = expect<OutOfTurnException>(() =>
                                round.PlaceAction(Action.Call(dealer)));

                            it["small blind must not act"] = expect<OutOfTurnException>(() =>
                                round.PlaceAction(Action.Fold(sb)));
                        };
                    };
                };
            };
        }
Ejemplo n.º 3
0
 public Turn(Position position)
 {
     Position = position;
 }
Ejemplo n.º 4
0
        public Positions(
            Position dealer,
            Position sb,
            Position bb,
            Position utg)
        {
            Dealer = dealer;
            SmallBlind = sb;
            BigBlind = bb;
            UnderTheGun = utg;

            Dealer.NextPosition = SmallBlind;
            SmallBlind.NextPosition = BigBlind;
            BigBlind.NextPosition = UnderTheGun;
            UnderTheGun.NextPosition = Dealer;
        }