mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-05-06 21:26:06 +00:00
11 lines
273 B
C#
11 lines
273 B
C#
using Xunit;
|
|
|
|
namespace Octokit.Tests.Integration.Fixtures
|
|
{
|
|
[CollectionDefinition(Name)]
|
|
public class OrganizationsHooksCollection : ICollectionFixture<OrganizationsHooksFixture>
|
|
{
|
|
public const string Name = "Organization Hooks Collection";
|
|
}
|
|
}
|