Exemple #1
0
        public void PutIfNoneMatchSucess()
        {
            var item = new TestData {
                Id = 88, Value = "Test Value 88"
            };

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

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