Пример #1
0
        public void TestThatGameBoardHasCorrectSecondTeamName()
        {
            String[] tf2 = new String[2];
            tf2[0] = "Blue";
            tf2[1] = "Red";
            var target = new GameBoard(tf2, null, null, null, null);

            Assert.AreEqual(tf2[1], target.getTeamNames()[1]);
        }