Пример #1
0
        public void ZRFCreatorConstructorTest()
        {
            object     newGame = null; // TODO: Initialize to an appropriate value
            ZRFCreator target  = new ZRFCreator(newGame);

            Assert.Inconclusive("TODO: Implement code to verify target");
        }
Пример #2
0
        public void BoardTest()
        {
            object     newGame = null;                    // TODO: Initialize to an appropriate value
            ZRFCreator target  = new ZRFCreator(newGame); // TODO: Initialize to an appropriate value

            target.Board();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
Пример #3
0
        public void BoardSetupTest()
        {
            object     newGame  = null;                    // TODO: Initialize to an appropriate value
            ZRFCreator target   = new ZRFCreator(newGame); // TODO: Initialize to an appropriate value
            string     expected = string.Empty;            // TODO: Initialize to an appropriate value
            string     actual;

            actual = target.BoardSetup();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
Пример #4
0
        public void GetCodeTest()
        {
            object     newGame = null;                    // TODO: Initialize to an appropriate value
            ZRFCreator target  = new ZRFCreator(newGame); // TODO: Initialize to an appropriate value

            string[] expected = null;                     // TODO: Initialize to an appropriate value
            string[] actual;
            actual = target.GetCode();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }