コード例 #1
0
ファイル: ShapeITest.cs プロジェクト: maxzhil/Tetris
        public void NextRotationXCorrectValueTest()
        {
            _shapeI = new ShapeI();
            int expected = _shapeI.X - 1;
            int actual   = _shapeI.NextRotationX();

            Assert.AreEqual(expected, actual);
        }