Skip to content

Instantly share code, notes, and snippets.

@azhidkov
Created March 18, 2013 06:09
Show Gist options
  • Save azhidkov/5185344 to your computer and use it in GitHub Desktop.
Save azhidkov/5185344 to your computer and use it in GitHub Desktop.
[Test]
public void AddRangeTest()
{
IList<int> lst1 = new List<int>{1, 2, 3, 4, 5};
IList<int> lst2 = new List<int> {9, 8, 7, 6};
lst1.AddRange(lst2);
Assert.That(lst1.Count, Is.EqualTo(9));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment