11 lines
265 B
C#
11 lines
265 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using VectorData.ConformanceTests.Support;
|
|
|
|
namespace SqliteVec.ConformanceTests.Support;
|
|
|
|
public class SqliteFixture : VectorStoreFixture
|
|
{
|
|
public override TestStore TestStore => SqliteTestStore.Instance;
|
|
}
|