public void XElementAnnotationTestAnnotationWithEntitySetTagInEntityContainerModel() { XElement expectedAnnotation = new XElement("{http://foo}EntitySet", "1" ); AnnotationInfo annotationInfo = new AnnotationInfo() { Namespace = "http://foo", Name = "EntitySet" }; List <ElementInfo> annotationPath = new List <ElementInfo>() { new ElementInfo() { Name = "Container", Type = AnnotatableElementType.EntityContainer } }; ElementLocation annotationLocation = new ElementLocation() { Namespace = "DefaultNamespace", ElementPath = annotationPath }; this.AnnotationRoundTripCsdlCheck(XElementAnnotationModelBuilder.AnnotationWithEntitySetTagInEntityContainerCsdl(), expectedAnnotation, annotationInfo, annotationLocation, XElementAnnotationModelBuilder.AnnotationWithEntitySetTagInEntityContainerModel()); }