public void BuildLocation_MethodSetsAttribute_LocationIsSetTo10And10()
        {
            //arrange
            MapPropBuilder builder = new TreeBuilder();

            //act
            builder.BuildLocation(10, 10);
            //assert
            Assert.AreEqual(builder.Prop.Picture.Location.X, 10);
            Assert.AreEqual(builder.Prop.Picture.Location.Y, 10);
        }