mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 12:26:18 +00:00
fix constructur for unit tests
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user