public void ToyPlaneWindUpString()
        {
            //Arrange
            string afterWindUpString;

            //Act
            afterWindUpString = toyplane.WindUpString();

            //Assert
            Assert.AreEqual(afterWindUpString, "Not wound up");
            Assert.AreNotEqual(afterWindUpString, string.Empty);
        }