Skip to content

Commit

Permalink
More tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed May 5, 2024
1 parent 8a3692e commit 6c347e2
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,6 @@ await context.Database.SqlQuery<string>($@"SELECT ""Bools"" AS ""Value"" FROM ""
.SingleAsync());
}

[Theory]
[MemberData(nameof(IsAsyncData))]
public override Task Inline_collection_Count_with_zero_values(bool async)
=> AssertTranslationFailedWithDetails(
() => base.Inline_collection_Count_with_zero_values(async),
RelationalStrings.EmptyCollectionNotSupportedAsInlineQueryRoot);

[NotSupportedOnFirebirdFact]
public override void Parameter_collection_in_subquery_and_Convert_as_compiled_query()
{
Expand Down Expand Up @@ -91,13 +84,6 @@ public override Task Inline_collection_Count_with_three_values(bool async)
return base.Inline_collection_Count_with_three_values(async);
}

[Theory]
[MemberData(nameof(IsAsyncData))]
public override Task Inline_collection_Contains_with_zero_values(bool async)
=> AssertTranslationFailedWithDetails(
() => base.Inline_collection_Contains_with_zero_values(async),
RelationalStrings.EmptyCollectionNotSupportedAsInlineQueryRoot);

[NotSupportedOnFirebirdTheory]
[MemberData(nameof(IsAsyncData))]
public override Task Parameter_collection_Count(bool async)
Expand Down

0 comments on commit 6c347e2

Please sign in to comment.