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 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.");
        }