public void GetClrTypeForUntypedDelta_Throws_UnsupportedEdmType()
        {
            IEdmTypeReference edmType = new EdmRowTypeReference(new EdmRowType(), isNullable: true);

            Assert.Throws <InvalidOperationException>(
                () => EdmStructuredObject.GetClrTypeForUntypedDelta(edmType),
                "The EDM type '[Row() Nullable=True]' of kind 'Row' is not supported.");
        }
 public void GetClrTypeForUntypedDelta_Throws_UnsupportedEdmType()
 {
     IEdmTypeReference edmType = new EdmRowTypeReference(new EdmRowType(), isNullable: true);
     Assert.Throws<InvalidOperationException>(
         () => EdmStructuredObject.GetClrTypeForUntypedDelta(edmType),
         "The EDM type '[Row() Nullable=True]' of kind 'Row' is not supported.");
 }