public async Task EnsuresNonNullArguments() { var client = new RepositoryCommentsClient(Substitute.For<IApiConnection>()); await AssertEx.Throws<ArgumentNullException>(async () => await client.Get(null, "name", 1)); await AssertEx.Throws<ArgumentException>(async () => await client.Get("", "name", 1)); await AssertEx.Throws<ArgumentNullException>(async () => await client.Get("owner", null, 1)); await AssertEx.Throws<ArgumentException>(async () => await client.Get("owner", "", 1)); }
public void RequestsCorrectUrl() { var connection = Substitute.For <IApiConnection>(); var client = new RepositoryCommentsClient(connection); client.Get("fake", "repo", 42); connection.Received().Get <CommitComment>(Arg.Is <Uri>(u => u.ToString() == "repos/fake/repo/comments/42")); }
public async Task RequestsCorrectUrlWithRepositoryId() { var connection = Substitute.For <IApiConnection>(); var client = new RepositoryCommentsClient(connection); await client.Get(1, 42); connection.Received().Get <CommitComment>(Arg.Is <Uri>(u => u.ToString() == "repositories/1/comments/42"), Arg.Any <Dictionary <string, string> >(), "application/vnd.github.squirrel-girl-preview+json"); }
public async Task RequestsCorrectUrlWithRepositoryId() { var connection = Substitute.For <IApiConnection>(); var client = new RepositoryCommentsClient(connection); await client.Get(1, 42); connection.Received().Get <CommitComment>(Arg.Is <Uri>(u => u.ToString() == "repositories/1/comments/42")); }