RedmineCollection.cs 219 B

123456789101112
  1. #if !(NET20 || NET40)
  2. using Xunit;
  3. namespace Padi.RedmineApi.Tests.Infrastructure
  4. {
  5. [CollectionDefinition("RedmineCollection")]
  6. public class RedmineCollection : ICollectionFixture<RedmineFixture>
  7. {
  8. }
  9. }
  10. #endif