mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-06 07:16:09 +00:00
11 lines
271 B
C#
11 lines
271 B
C#
using Xunit;
|
|
|
|
namespace Octokit.Tests.Integration.Fixtures
|
|
{
|
|
[CollectionDefinition(Name)]
|
|
public class RepositoriesHooksCollection : ICollectionFixture<RepositoriesHooksFixture>
|
|
{
|
|
public const string Name = "Repositories Hooks Collection";
|
|
}
|
|
}
|