示例#1
0
        public void TestRespondToInteraction()
        {
            Position position = new Position(23, 34);

            GameObject balloon = new Balloon(position, '2', Colour.Green);

            balloon.RespondToInteraction();

            bool actual = balloon.IsDestroyed;
            bool expected = true;

            Assert.AreEqual(expected, actual);
        }