Пример #1
0
        public void getCutomerAccounts_Called_When_Given_Valid_CustomerId()
        {
            config.Setup(p => p.getAllAccounts(1)).Returns(new List <Account> {
                new Account()
                {
                }
            });

            var result = TokenObj.getAllAccounts(1);

            Assert.That(result, Is.Not.Null);
        }