mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
Implement dependency review and dependency submission Co-authored-by: André Pereira <Andre.LuisPereira@Student.HTW-Berlin.de>
18 lines
348 B
C#
18 lines
348 B
C#
using System;
|
|
using Xunit;
|
|
|
|
namespace Octokit
|
|
{
|
|
public class DependencyGraphClientTests
|
|
{
|
|
public class TheCtor
|
|
{
|
|
[Fact]
|
|
public void EnsuresNonNullArguments()
|
|
{
|
|
Assert.Throws<ArgumentNullException>(() => new DependencyGraphClient(null));
|
|
}
|
|
}
|
|
}
|
|
}
|