Files
mongodb-generic-repository/IntegrationTests/CRUDTests.cs
T
2024-11-26 00:18:00 +01:00

21 lines
434 B
C#

using IntegrationTests.Infrastructure;
using NUnit.Framework;
using NUnit.Framework.Internal;
using TestDoc = IntegrationTests.Infrastructure.TestDoc;
namespace IntegrationTests
{
public class TestDocument : TestDoc
{
}
[TestFixture]
public class CRUDTests : MongoDbDocumentTestBase<TestDocument>
{
public override string GetClassName()
{
return "CRUDTests";
}
}
}