.NET Core tests with xunit

This commit is contained in:
alexandre-spieser
2017-09-09 17:52:12 +00:00
parent fb4ee42a5c
commit 54efe5e520
16 changed files with 1332 additions and 5 deletions
@@ -0,0 +1,10 @@
using MongoDbGenericRepository;
namespace IntegrationTests
{
public interface ITestRepository : IBaseMongoRepository
{
void DropTestCollection<TDocument>();
void DropTestCollection<TDocument>(string partitionKey);
}
}