Esempio n. 1
0
        public void TestIfMethodGetBlockTypeReturnGivenString()
        {
            Block  oBlock            = new O_Block(2, 1);
            string expectedBlockType = "O_Block";
            string actualResult      = oBlock.GetBlockType();

            Assert.AreEqual(expectedBlockType, actualResult);
        }