Skip to content

Commit

Permalink
Tiny: rename tests
Browse files Browse the repository at this point in the history
  • Loading branch information
roji committed Jul 24, 2019
1 parent dbe744d commit f40ddff
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -928,9 +928,9 @@ FROM root c
WHERE (c[""Discriminator""] = ""Customer"")");
}

public override async Task Contains_with_local_int_array_closure(bool isAsync)
public override async Task Contains_with_local_uint_array_closure(bool isAsync)
{
await base.Contains_with_local_int_array_closure(isAsync);
await base.Contains_with_local_uint_array_closure(isAsync);

AssertSql(
@"SELECT c
Expand All @@ -942,9 +942,9 @@ FROM root c
WHERE ((c[""Discriminator""] = ""Employee"") AND c[""EmployeeID""] IN (0))");
}

public override async Task Contains_with_local_nullable_int_array_closure(bool isAsync)
public override async Task Contains_with_local_nullable_uint_array_closure(bool isAsync)
{
await base.Contains_with_local_nullable_int_array_closure(isAsync);
await base.Contains_with_local_nullable_uint_array_closure(isAsync);

AssertSql(
@"SELECT c
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1095,7 +1095,7 @@ await AssertQuery<Customer>(

[ConditionalTheory]
[MemberData(nameof(IsAsyncData))]
public virtual async Task Contains_with_local_int_array_closure(bool isAsync)
public virtual async Task Contains_with_local_uint_array_closure(bool isAsync)
{
var ids = new uint[] { 0, 1 };

Expand All @@ -1112,7 +1112,7 @@ await AssertQuery<Employee>(

[ConditionalTheory]
[MemberData(nameof(IsAsyncData))]
public virtual async Task Contains_with_local_nullable_int_array_closure(bool isAsync)
public virtual async Task Contains_with_local_nullable_uint_array_closure(bool isAsync)
{
var ids = new uint?[] { 0, 1 };

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -858,9 +858,9 @@ FROM [Customers] AS [c0]
WHERE [c0].[City] IN (N'London') AND ([c0].[CustomerID] = [c].[CustomerID]))");
}

public override async Task Contains_with_local_int_array_closure(bool isAsync)
public override async Task Contains_with_local_uint_array_closure(bool isAsync)
{
await base.Contains_with_local_int_array_closure(isAsync);
await base.Contains_with_local_uint_array_closure(isAsync);

AssertSql(
@"SELECT [e].[EmployeeID], [e].[City], [e].[Country], [e].[FirstName], [e].[ReportsTo], [e].[Title]
Expand All @@ -872,9 +872,9 @@ FROM [Employees] AS [e]
WHERE [e].[EmployeeID] IN (0)");
}

public override async Task Contains_with_local_nullable_int_array_closure(bool isAsync)
public override async Task Contains_with_local_nullable_uint_array_closure(bool isAsync)
{
await base.Contains_with_local_nullable_int_array_closure(isAsync);
await base.Contains_with_local_nullable_uint_array_closure(isAsync);

AssertSql(
@"SELECT [e].[EmployeeID], [e].[City], [e].[Country], [e].[FirstName], [e].[ReportsTo], [e].[Title]
Expand Down

0 comments on commit f40ddff

Please sign in to comment.