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