Added Observable classes and got started on observable tests

This commit is contained in:
Jasmine
2016-01-28 14:29:08 -05:00
parent fd91d72ce3
commit 19f0bf389e
18 changed files with 246 additions and 2 deletions
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.IO;
using NSubstitute;
using Octokit.Reactive;
using Xunit;
using System.Reactive.Linq;
namespace Octokit.Tests.Reactive
{
public class ObservableUserAdministrationClientTests
{
public class ThePromoteMethod
{
[Fact]
public void EnsuresArgumentIsNotNull()
{
var client = new ObservableUserAdministrationClient();
Assert.Throws<ArgumentNullException>(() => client.Promote(null));
}
}
}
}