Exemplo n.º 1
0
        public void PutIfNoneMatchSucessAsync()
        {
            var item = new TestData {
                Id = 88, Value = "Test Value 88"
            };

            var result = _orchestrate.PutIfNoneMatchAsync(CollectionName, "88", item).Result;

            Assert.IsTrue(result.Value == null || result.Value.ToString() == string.Empty);
        }