18 lines
581 B
C#
18 lines
581 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using MongoDB.ConformanceTests.Support;
|
|
using VectorData.ConformanceTests.ModelTests;
|
|
using VectorData.ConformanceTests.Support;
|
|
using Xunit;
|
|
|
|
namespace MongoDB.ConformanceTests.ModelTests;
|
|
|
|
public class MongoMultiVectorModelTests(MongoMultiVectorModelTests.Fixture fixture)
|
|
: MultiVectorModelTests<string>(fixture), IClassFixture<MongoMultiVectorModelTests.Fixture>
|
|
{
|
|
public new class Fixture : MultiVectorModelTests<string>.Fixture
|
|
{
|
|
public override TestStore TestStore => MongoTestStore.Instance;
|
|
}
|
|
}
|