22 lines
477 B
C#
22 lines
477 B
C#
using IntegrationTests.Infrastructure;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
using MongoDbGenericRepository.Models;
|
|
using NUnit.Framework;
|
|
using System;
|
|
|
|
namespace IntegrationTests
|
|
{
|
|
public class TKeyTestDocument : TestDoc<Guid>
|
|
{
|
|
}
|
|
|
|
[TestFixture]
|
|
public class CRUDTKeyTests : MongoDbTKeyDocumentTestBase<TKeyTestDocument, Guid>
|
|
{
|
|
public override string GetClassName()
|
|
{
|
|
return "CreateTKeyTests";
|
|
}
|
|
}
|
|
}
|