Skip to content

Commit

Permalink
More tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
cincuranet committed Dec 12, 2024
1 parent 8a4e842 commit bd587a6
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,13 @@ public override Task Reverse_in_SelectMany_with_Take(bool async)
return base.Reverse_in_SelectMany_with_Take(async);
}

[NotSupportedOnFirebirdTheory]
[MemberData(nameof(IsAsyncData))]
public override Task Set_operation_in_pending_collection(bool async)
{
return base.Set_operation_in_pending_collection(async);
}

[Theory]
[MemberData(nameof(IsAsyncData))]
public override async Task Correlated_collection_after_distinct_with_complex_projection_not_containing_original_identifier(bool async)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,20 @@ public override Task Union_Intersect(bool async)
return base.Union_Intersect(async);
}

[NotSupportedOnFirebirdTheory]
[MemberData(nameof(IsAsyncData))]
public override Task Except_on_distinct(bool async)
{
return base.Except_on_distinct(async);
}

[NotSupportedOnFirebirdTheory]
[MemberData(nameof(IsAsyncData))]
public override Task Intersect_on_distinct(bool async)
{
return base.Intersect_on_distinct(async);
}

[Theory]
[MemberData(nameof(IsAsyncData))]
public override Task Client_eval_Union_FirstOrDefault(bool async)
Expand Down

0 comments on commit bd587a6

Please sign in to comment.