fix constructur for unit tests

This commit is contained in:
maddin2016
2016-06-01 16:45:56 +02:00
parent 56434f29f6
commit 65f481fcf4
3 changed files with 20 additions and 1 deletions
@@ -7,6 +7,16 @@ namespace Octokit.Tests.Reactive
{
public class ObservablePullRequestReviewCommentReactionsClientTests
{
public class TheCtor
{
[Fact]
public void EnsuresNonNullArguments()
{
Assert.Throws<ArgumentNullException>(() => new ObservablePullRequestReviewCommentReactionsClient(null));
}
}
public class TheGetAllMethod
{
private readonly IGitHubClient _githubClient;