public void ClrTypeMappingValueAnnotationCollectionOfCollectionPropertyTest()
        {
            var edmModel = this.GetParserResult(ClrTypeMappingTestModelBuilder.ValueAnnotationCollectionOfCollectionPropertyTest());

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

            this.ValidateClrObjectConverter(valueAnnotation,
                                            new ClassWithCollectionOfCollectionProperty()
            {
                C = new int[][] { new int[] { 8, 9 } }
            });
        }