// Copyright (c) Microsoft. All rights reserved. using CosmosNoSql.ConformanceTests.Support; using Microsoft.Azure.Cosmos; using Microsoft.Extensions.VectorData; using VectorData.ConformanceTests.ModelTests; using VectorData.ConformanceTests.Support; using Xunit; namespace CosmosNoSql.ConformanceTests.ModelTests; public class CosmosNoSqlBasicModelTests(CosmosNoSqlBasicModelTests.Fixture fixture) : BasicModelTests(fixture), IClassFixture { public override async Task GetAsync_with_filter_and_multiple_OrderBys() { // CosmosException: The order by query does not have a corresponding composite index that it can be served from. var exception = await Assert.ThrowsAsync(base.GetAsync_with_filter_and_multiple_OrderBys); Assert.IsType(exception.InnerException); } public new class Fixture : BasicModelTests.Fixture { public override TestStore TestStore => CosmosNoSqlTestStore.Instance; } }