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