Exemplo n.º 1
0
        public void when_calling_accept_bug_the_status_changes()
        {
            int    ID     = 7;
            string status = "IN_PROGRESS";

            _client.AcceptBug(ID, status);

            IBug bug = _client.GetBug(ID);

            Assert.AreEqual(bug.Status, status);
        }