Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No test left behind: Ef6GroupByTest #26974

Merged
merged 1 commit into from
Dec 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,46 +18,6 @@ group p by p.Category
into g
select new { Category = g.Key, AveragePrice = g.Average(p => p.UnitPrice) });

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_doesnt_produce_a_groupby_statement(bool async)
=> await base.Grouping_by_all_columns_doesnt_produce_a_groupby_statement(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_2(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_2(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_3(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_3(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_4(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_4(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_5(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_5(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_6(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_6(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_7(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_7(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_8(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_8(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_9(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_9(async);

[ConditionalTheory(Skip = "Issue #17653")]
public override async Task Grouping_by_all_columns_with_aggregate_function_works_10(bool async)
=> await base.Grouping_by_all_columns_with_aggregate_function_works_10(async);

public class Ef6GroupByInMemoryFixture : Ef6GroupByFixtureBase
{
protected override ITestStoreFactory TestStoreFactory
Expand Down
Loading