public void NextRotationCorrectValueTest() { _shapeI = new ShapeI(); int[,] expected = new int[1, 4] { { 1, 1, 1, 1 } }; int[,] actual = _shapeI.NextRotation(_shapeI.Rotation); Assert.AreEqual(expected.ToString(), actual.ToString()); }