Example #1
0
        public void UpdateCategory()
        {
            var cc1      = CreateCategory(null, "Update test CAT");
            var response = _api.UpdateCategory(cc1.Id, "UPD New cat", null);

            Assert.IsNotNull(response);
            Assert.AreEqual(ResultState.Modified, response);
        }