Exemplo n.º 1
0
        public void GitHubApi_GetUserRepos_GetAndExistsAny()
        {
            GitHubApi gitHubApi = new GitHubApi("https://api.github.com/", logger);

            var result = gitHubApi.GetUserRepos("mimat2");

            Assert.IsNotNull(result);
            Assert.IsTrue(result.Any());
        }