Files
microsoft--semantic-kernel/dotnet/test/VectorData/PgVector.ConformanceTests/PostgresIndexKindTests.cs
T
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

24 lines
706 B
C#

// Copyright (c) Microsoft. All rights reserved.
using Microsoft.Extensions.VectorData;
using PgVector.ConformanceTests.Support;
using VectorData.ConformanceTests;
using VectorData.ConformanceTests.Support;
using VectorData.ConformanceTests.Xunit;
using Xunit;
namespace PgVector.ConformanceTests;
public class PostgresIndexKindTests(PostgresIndexKindTests.Fixture fixture)
: IndexKindTests<int>(fixture), IClassFixture<PostgresIndexKindTests.Fixture>
{
[ConditionalFact]
public virtual Task Hnsw()
=> this.Test(IndexKind.Hnsw);
public new class Fixture() : IndexKindTests<int>.Fixture
{
public override TestStore TestStore => PostgresTestStore.Instance;
}
}