Skip to content

Commit

Permalink
Make debug assert only fail tests in debug build.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcvickers committed Dec 14, 2021
1 parent 0aeab4d commit b8cbb46
Show file tree
Hide file tree
Showing 4 changed files with 711 additions and 277 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,46 +20,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

0 comments on commit b8cbb46

Please sign in to comment.