18 lines
528 B
C#
18 lines
528 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using SqliteVec.ConformanceTests.Support;
|
|
using VectorData.ConformanceTests;
|
|
using VectorData.ConformanceTests.Support;
|
|
using Xunit;
|
|
|
|
namespace SqliteVec.ConformanceTests;
|
|
|
|
public class SqliteIndexKindTests(SqliteIndexKindTests.Fixture fixture)
|
|
: IndexKindTests<int>(fixture), IClassFixture<SqliteIndexKindTests.Fixture>
|
|
{
|
|
public new class Fixture() : IndexKindTests<int>.Fixture
|
|
{
|
|
public override TestStore TestStore => SqliteTestStore.Instance;
|
|
}
|
|
}
|