public void ShouldCompareIntegerListAsEqual() { var first = new ArrayList() { 1, 2, 3 }; var second = new ArrayList() { 1, 2, 3 }; Assert.That(first.CollectionEqual(second), Is.True, "Thought equal lists wasn't equal"); }