public void Combine() { var combined = EnumerableUtility.Combine(new[] { 1, 2, 3 }, new List <int> (new[] { 3, 4, 5 })); Assert.That(combined.ToArray(), Is.EqualTo(new[] { 1, 2, 3, 3, 4, 5 })); }