public void PutIfMatchSuccess() { var match = _orchestrate.Get(CollectionName, "1"); var item = new TestData { Id = 1, Value = "New and improved value!" }; var result = _orchestrate.PutIfMatch(CollectionName, "1", item, match.Path.Ref); Assert.IsTrue(result.Value == null || result.Value.ToString() == string.Empty); }