public When_mapping_int_as_string_and_long_as_long()
        {
            var dynamicObjectMapper = new CustomMapper();

            dynamicObjectWithInt = dynamicObjectMapper.MapObject(123);
            dynamicObjectWithLong = dynamicObjectMapper.MapObject(456L);
        }
        public When_mapping_int_as_string_and_long_as_long()
        {
            var dynamicObjectMapper = new CustomMapper();

            dynamicObjectWithInt  = dynamicObjectMapper.MapObject(123);
            dynamicObjectWithLong = dynamicObjectMapper.MapObject(456L);
        }
        public When_mapping_reducing_property_set_for_seriable_type()
        {
            var dynamicObjectMapper = new CustomMapper();

            dynamicObject = dynamicObjectMapper.MapObject(new DataObject
            {
                PropertyOne = "one",
                PropertyTwo = "two",
            });
        }
        public When_mapping_reducing_property_set_for_seriable_type()
        {
            var dynamicObjectMapper = new CustomMapper();

            dynamicObject = dynamicObjectMapper.MapObject(new DataObject
            {
                PropertyOne = "one",
                PropertyTwo = "two"
            });
        }