Cleanup after tests

This commit is contained in:
alexandre-spieser
2017-08-27 15:50:39 +00:00
parent 5c4d0f5c63
commit 5817486f10
6 changed files with 49 additions and 66 deletions
@@ -0,0 +1,9 @@
using MongoDbGenericRepository;
namespace IntegrationTests
{
public interface ITestRepository : IBaseMongoRepository
{
void DropTestCollection<TDocument>();
}
}