mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
13 lines
257 B
C#
13 lines
257 B
C#
namespace Octokit.Tests.Integration
|
|
{
|
|
public class GitHubClientTestBase
|
|
{
|
|
protected readonly IGitHubClient _github;
|
|
|
|
public GitHubClientTestBase()
|
|
{
|
|
_github = Helper.GetAuthenticatedClient();
|
|
}
|
|
}
|
|
}
|