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