4 references to UnionTestHelper
Microsoft.CodeAnalysis.UnitTests (4)
Collections\ImmutableSetTest.nonnetstandard.cs (4)
55UnionTestHelper(this.Empty<int>(), new[] { 1, 3, 5, 7 }); 56UnionTestHelper(this.Empty<int>().Union(new[] { 2, 4, 6 }), new[] { 1, 3, 5, 7 }); 57UnionTestHelper(this.Empty<int>().Union(new[] { 1, 2, 3 }), Array.Empty<int>()); 58UnionTestHelper(this.Empty<int>().Union(new[] { 2 }), Enumerable.Range(0, 1000).ToArray());