Exemplo n.º 1
0
        static void Main(string[] args)
        {
            myclass1 <int> mclass1 = new myclass1 <int>();
            myclass2 <int> mclass2 = new myclass2 <int>();

            Console.ReadLine();
        }
Exemplo n.º 2
0
        public void Test2()
        {
            var mycl = new myclass1();

            Assert.AreEqual("Cell rot born on 14.12.2019 is alive", mycl.PrintState(true, new System.DateTime(2019, 12, 14), "rot"));
        }
Exemplo n.º 3
0
        public void Test1()
        {
            var mycl = new myclass1();

            Assert.AreEqual("Cell is on Position X:6 Y:7", mycl.PrintPostion(6, 7));
        }