public void CopyTo() { hashSet = new MyHashSet <Box>(boxes); var array = new Box[hashSet.Count]; hashSet.CopyTo(array, 0); array.Should().BeEquivalentTo(boxes); }