临河任务调度
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MongoTestCollection.cs 210B

4 kuukautta sitten
123456789
  1. using Xunit;
  2. namespace Himp.TaskScheduling.MongoDB;
  3. [CollectionDefinition(Name)]
  4. public class MongoTestCollection : ICollectionFixture<MongoDbFixture>
  5. {
  6. public const string Name = "MongoDB Collection";
  7. }