Skip to content

Commit

Permalink
Test: Use AssertQuery in NorthwindIncludeQueryTestBase
Browse files Browse the repository at this point in the history
- Remove string based includes from base class. (will move to a different class)
- Remove tests related to no tracking from base class. (will move to a different class)
- Run tests for both sync/async
  • Loading branch information
smitpatel committed May 21, 2020
1 parent 3f2fa3f commit bfcabee
Show file tree
Hide file tree
Showing 4 changed files with 1,204 additions and 3,598 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.

using System.Threading.Tasks;
using Xunit;
using Xunit.Abstractions;

Expand All @@ -15,9 +16,9 @@ public NorthwindIncludeQueryInMemoryTest(IncludeInMemoryFixture fixture, ITestOu
}

[ConditionalTheory(Skip = "Issue#17386")]
public override void Include_collection_with_last_no_orderby(bool useString)
public override Task Include_collection_with_last_no_orderby(bool async)
{
base.Include_collection_with_last_no_orderby(useString);
return base.Include_collection_with_last_no_orderby(async);
}
}
}
Loading

0 comments on commit bfcabee

Please sign in to comment.