Exemplo n.º 1
0
        public void IsTwoPairs_TwoPairs_True()
        {
            SolverPrototype   solver = new SolverPrototype("Deck1");
            HandTwoPairs_Stub hand   = new HandTwoPairs_Stub();
            bool expected            = true;

            bool actual = solver.IsTwoPairs(hand);

            Assert.That(actual, Is.EqualTo(expected));
        }
Exemplo n.º 2
0
        public void IsTwoPairs_TwoPairs_True()
        {
            SolverPrototype solver = new SolverPrototype("Deck1");
            HandTwoPairs_Stub hand = new HandTwoPairs_Stub();
            bool expected = true;

            bool actual = solver.IsTwoPairs(hand);
            Assert.That(actual, Is.EqualTo(expected));
        }