14 references to SetWith
Microsoft.CodeAnalysis.UnitTests (14)
Collections\ImmutableSetTest.cs (14)
298new SetTriad(SetWith<int>(), Array.Empty<int>(), true), 299new SetTriad(SetWith<int>(5), new int[] { 5 }, true), 300new SetTriad(SetWith<int>(5), new int[] { 5, 5 }, true), 301new SetTriad(SetWith<int>(5, 8), new int[] { 5, 5 }, false), 302new SetTriad(SetWith<int>(5, 8), new int[] { 5, 7 }, false), 303new SetTriad(SetWith<int>(5, 8), new int[] { 5, 8 }, true), 304new SetTriad(SetWith<int>(5), Array.Empty<int>(), false), 305new SetTriad(SetWith<int>(), new int[] { 5 }, false), 306new SetTriad(SetWith<int>(5, 8), new int[] { 5 }, false), 307new SetTriad(SetWith<int>(5), new int[] { 5, 8 }, false), 308new SetTriad(SetWith<int>(5, 8), SetWith<int>(5, 8), true), 375var actualFunc = operation(this.SetWith(scenario.Item1.ToArray())); 377Assert.Equal(scenario.Item3, actualFunc(this.SetWith(scenario.Item2.ToArray()))); //, message, args);