Exemple #1
0
 public void CanPlayAgainstPlayerTest()
 {
     Tournament_Accessor target = new Tournament_Accessor(); // TODO: Initialize to an appropriate value
     Player worstInRank = null; // TODO: Initialize to an appropriate value
     Player betterInRank = null; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.CanPlayAgainstPlayer(worstInRank, betterInRank);
     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.");
        }
Exemple #3
0
        public void CanPlayAgainstPlayerTest()
        {
            Tournament_Accessor target = new Tournament_Accessor(); // TODO: Initialize to an appropriate value
            Player worstInRank         = null;                      // TODO: Initialize to an appropriate value
            Player betterInRank        = null;                      // TODO: Initialize to an appropriate value
            bool   expected            = false;                     // TODO: Initialize to an appropriate value
            bool   actual;

            actual = target.CanPlayAgainstPlayer(worstInRank, betterInRank);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Exemple #4
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.");
 }