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.
21 lines
497 B
21 lines
497 B
using System;
|
|
using Mongo2Go;
|
|
|
|
namespace SettleAccount.MongoDB;
|
|
|
|
public class MongoDbFixture : IDisposable
|
|
{
|
|
private static readonly MongoDbRunner MongoDbRunner;
|
|
public static readonly string ConnectionString;
|
|
|
|
static MongoDbFixture()
|
|
{
|
|
MongoDbRunner = MongoDbRunner.Start(singleNodeReplSet: true, singleNodeReplSetWaitTimeout: 20);
|
|
ConnectionString = MongoDbRunner.ConnectionString;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
MongoDbRunner?.Dispose();
|
|
}
|
|
}
|
|
|