mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
Red Tests were fixed
Unused 'using' directive were removed.
This commit is contained in:
@@ -12,6 +12,16 @@ using Xunit;
|
||||
|
||||
public class ReleasesClientTests
|
||||
{
|
||||
public class TheCtor
|
||||
{
|
||||
[Fact]
|
||||
public void EnsuresNonNullArguments()
|
||||
{
|
||||
Assert.Throws<ArgumentNullException>(
|
||||
() => new ReleasesClient(null));
|
||||
}
|
||||
}
|
||||
|
||||
public class TheGetReleasesMethod : IDisposable
|
||||
{
|
||||
private readonly IReleasesClient _releaseClient;
|
||||
|
||||
Reference in New Issue
Block a user