mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
35 lines
1.6 KiB
C#
35 lines
1.6 KiB
C#
using System.Reflection;
|
|
|
|
namespace Octokit.Tests
|
|
{
|
|
public static class Fixtures
|
|
{
|
|
public static EmbeddedResource AuthorizationsJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.authorizations.json");
|
|
|
|
public static EmbeddedResource AuthorizationJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.authorization.json");
|
|
|
|
public static EmbeddedResource UserJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.user.json");
|
|
|
|
public static EmbeddedResource UserFullJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.user_full.json");
|
|
|
|
public static EmbeddedResource RepositoryJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.repository.json");
|
|
|
|
public static EmbeddedResource RepositoriesJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.repositories.json");
|
|
|
|
public static EmbeddedResource ReleasesJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.releases.json");
|
|
|
|
public static EmbeddedResource ReleaseJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.release.json");
|
|
|
|
public static EmbeddedResource ReleaseAssetJson =
|
|
new EmbeddedResource(typeof(Fixtures).GetTypeInfo().Assembly, "Octokit.Tests.Fixtures.release_asset.json");
|
|
}
|
|
}
|