mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
20 lines
361 B
C#
20 lines
361 B
C#
using Octokit.Internal;
|
|
using Xunit;
|
|
|
|
namespace Octokit.Tests.Http
|
|
{
|
|
public class RequestTests
|
|
{
|
|
public class TheConstructor
|
|
{
|
|
[Fact]
|
|
public void InitializesAllRequiredProperties()
|
|
{
|
|
var r = new Request();
|
|
|
|
Assert.NotNull(r.Headers);
|
|
}
|
|
}
|
|
}
|
|
}
|