added missing convention test

This commit is contained in:
Brendan Forster
2016-05-18 14:21:08 +03:00
parent 4161c192e1
commit 809bd3d0da
@@ -7,6 +7,15 @@ namespace Octokit.Tests.Reactive
{
public class ObservableRepositoryPagesClientTests
{
public class TheCtor
{
[Fact]
public void EnsuresNonNullArguments()
{
Assert.Throws<ArgumentNullException>(() => new ObservableRepositoryPagesClient(null));
}
}
public class TheGetAllMethod
{
[Fact]