public void ClrTypeMappingValueAnnotationClassTypeWithNewProperties()
        {
            var edmModel = this.GetParserResult(ClrTypeMappingTestModelBuilder.ValueAnnotationClassTypeWithNewProperties());

            var valueAnnotation = this.GetValueAnnotations(edmModel, edmModel.FindType("NS1.Person"), "RecursivePropertyWithNewProperties").Single();

            this.ValidateClrObjectConverter(valueAnnotation, new DerivedRecursiveProperty()
            {
                X = 1, Y = 2, Origin = 4
            });
        }