Skip to content

Commit

Permalink
Rename Except and Intersect tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
bartdesmet committed Feb 22, 2019
1 parent c5cd99c commit cca4b7e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void Except_Null()
}

[Fact]
public async Task Except1()
public async Task Except_Simple()
{
var xs = new[] { 1, 2, 3 }.ToAsyncEnumerable();
var ys = new[] { 3, 5, 1, 4 }.ToAsyncEnumerable();
Expand All @@ -35,7 +35,7 @@ public async Task Except1()
}

[Fact]
public async Task Except2()
public async Task Except_EqualityComparer()
{
var xs = new[] { 1, 2, -3 }.ToAsyncEnumerable();
var ys = new[] { 3, 5, -1, 4 }.ToAsyncEnumerable();
Expand All @@ -47,7 +47,7 @@ public async Task Except2()
}

[Fact]
public async Task Except3()
public async Task Except_SequenceIdentity()
{
var xs = new[] { 1, 2, 3 }.ToAsyncEnumerable();
var ys = new[] { 3, 5, 1, 4 }.ToAsyncEnumerable();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public void Intersect_Null()
}

[Fact]
public async Task Intersect1()
public async Task Intersect_Simple()
{
var xs = new[] { 1, 2, 3 }.ToAsyncEnumerable();
var ys = new[] { 3, 5, 1, 4 }.ToAsyncEnumerable();
Expand All @@ -36,7 +36,7 @@ public async Task Intersect1()
}

[Fact]
public async Task Intersect2()
public async Task Intersect_EqualityComparer()
{
var xs = new[] { 1, 2, -3 }.ToAsyncEnumerable();
var ys = new[] { 3, 5, -1, 4 }.ToAsyncEnumerable();
Expand All @@ -49,7 +49,7 @@ public async Task Intersect2()
}

[Fact]
public async Task Intersect3()
public async Task Intersect_SequenceIdentity()
{
var xs = new[] { 1, 2, 3 }.ToAsyncEnumerable();
var ys = new[] { 3, 5, 1, 4 }.ToAsyncEnumerable();
Expand Down

0 comments on commit cca4b7e

Please sign in to comment.