public void CopyToTest()
 {
     int[] array = new int[8];
     testSet.CopyTo(array, 0);
     Assert.IsTrue(array.SequenceEqual(new int[8] {
         15, 19, 25, 128, 1992, 54, -7, -72
     }));
 }