public void GameObjectTests_ToStringTwo()
        {
            GameObject objectOne = new GameObject(1, 5, 3);

            Assert.AreEqual("1", objectOne.ToString(), "Problem with the ToString()");
        }
 public void GameObjectTests_Construtor()
 {
     GameObject firstObject = new GameObject(3, 5, 3);
     GameObject secondObject = new GameObject(3, 5, 3);
     Assert.AreEqual(firstObject.ToString(), secondObject.ToString(), "Problem with the constructor");
 }