Ejemplo n.º 1
0
        public async Task ListCategoriesAsync_ShouldReturnListOfCategoriesWithoutPosts()
        {
            var response = await butterClient.ListCategoriesAsync();

            Assert.IsNotNull(response);
            Assert.IsNull(response.FirstOrDefault().RecentPosts);
        }