示例#1
0
        public void GivenIHaveEnteredEmailPasswordToUpdateAndMadeAPutCall(Table table)
        {
            var user = table.CreateInstance <UpdateuserwithId>();

            ScenarioContext.Current["name"] = user.name;
            ScenarioContext.Current["job"]  = user.job;
            UpdateResponse = UpdateCalls.UpdateCustomer(user.id, user.name, user.job);
            //ScenarioContext.Current["response"] = UpdateResponse;
        }
 public void no_update_hook_called()
 {
     UpdateCalls.ShouldBeEmpty();
 }