Ejemplo n.º 1
0
        public void TestmatchAlreadyEndedP1()
        {
            Match match = new Match();

            for (int i = 0; i < 73; i++)
            {
                match.PlayerOneWinsPoint();
            }
        }
Ejemplo n.º 2
0
        public void TestCleanSweep()
        {
            Match match = new Match();

            for (int i = 0; i < 72; i++)
            {
                match.PlayerOneWinsPoint();
            }
            Assert.AreEqual("6 - 0, 6 - 0, 6 - 0", match.Score());
        }