Exemple #1
0
        public void DeterminePlayerColorTest()
        {
            Tournament_Accessor target = new Tournament_Accessor(); // TODO: Initialize to an appropriate value
            Player playerA             = null;                      // TODO: Initialize to an appropriate value
            Player playerB             = null;                      // TODO: Initialize to an appropriate value

            Player[] expected = null;                               // TODO: Initialize to an appropriate value
            Player[] actual;
            actual = target.DeterminePlayerColor(playerA, playerB);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #2
0
 public void DeterminePlayerColorTest()
 {
     Tournament_Accessor target = new Tournament_Accessor(); // TODO: Initialize to an appropriate value
     Player playerA = null; // TODO: Initialize to an appropriate value
     Player playerB = null; // TODO: Initialize to an appropriate value
     Player[] expected = null; // TODO: Initialize to an appropriate value
     Player[] actual;
     actual = target.DeterminePlayerColor(playerA, playerB);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }