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 edfa317 commit 2a43a82
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,27 @@ public override Task Prune_does_not_throw_null_ref(bool async)
return base.Prune_does_not_throw_null_ref(async);
}

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

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

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

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

0 comments on commit 2a43a82

Please sign in to comment.