Beispiel #1
0
        public void IsFlush_Flush_True()
        {
            SolverPrototype solver   = new SolverPrototype("Deck1");
            HandFlush_Stub  stub     = new HandFlush_Stub();
            bool            expected = true;

            bool actual = solver.IsFlush(stub);

            Assert.That(actual, Is.EqualTo(expected));
        }
Beispiel #2
0
        public void IsFlush_Flush_True()
        {
            SolverPrototype solver = new SolverPrototype("Deck1");
            HandFlush_Stub stub = new HandFlush_Stub();
            bool expected = true;

            bool actual = solver.IsFlush(stub);
            Assert.That(actual, Is.EqualTo(expected));
        }