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