Пример #1
0
        public void ShouldAddClient()
        {
            //given
            Client client = new Client("John", "Bush", 1);

            //when
            usersList.AddClient(client);
            //them
            Assert.AreEqual(usersList.GetAllClients()[0], client);
        }