示例#1
0
        public void TestMethod2()
        {
            GoL goL = new GoL();

            goL.CreateBoard(3);
            goL.AddCell(0, 0, true);
            goL.AddCell(1, 0, true);
            goL.AddCell(2, 0, false);
            goL.AddCell(9, 0, false);
        }
示例#2
0
        public void TestMethod1()
        {
            GoL w = new GoL();

            w.CreateBoard(3);
            w.AddCell(0, 0, false);
            w.AddCell(1, 0, true);
            w.AddCell(1, 1, true);
            w.AddCell(1, 1, true);

            Assert.IsTrue(w.WillBeAlive(0, 0));
        }