public void CopyTo_ArrayIndexIsNegative_ExceptionThrown()
        {
            var collection = new StandardWordListCollection();

            StandardWordList[] array = new StandardWordList[1];
            collection.CopyTo(array, -1);
        }
        public void CopyTo_DestinationOverflow_ExceptionThrown()
        {
            var collection = new StandardWordListCollection();

            collection.Add(StandardWordList.FemaleNames);
            collection.Add(StandardWordList.MaleNames);
            StandardWordList[] array = new StandardWordList[1];
            collection.CopyTo(array, 0);
        }
        public void CopyTo_NoArrayPassed_ExceptionThrown()
        {
            var collection = new StandardWordListCollection();

            collection.CopyTo(null, 0);
        }
 public void CopyTo_DestinationOverflow_ExceptionThrown()
 {
   var collection = new StandardWordListCollection();
   collection.Add(StandardWordList.FemaleNames);
   collection.Add(StandardWordList.MaleNames);
   StandardWordList[] array = new StandardWordList[1];
   collection.CopyTo(array, 0);
 }
 public void CopyTo_ArrayIndexIsNegative_ExceptionThrown()
 {
   var collection = new StandardWordListCollection();
   StandardWordList[] array = new StandardWordList[1];
   collection.CopyTo(array, -1);
 }
 public void CopyTo_NoArrayPassed_ExceptionThrown()
 {
   var collection = new StandardWordListCollection();
   collection.CopyTo(null, 0);
 }