/// <summary>
 /// Adds the elements of a <see cref="NUnitTestCollection"/> to the end of the collection.
 /// </summary>
 /// <param name="items">The <see cref="NUnitTestCollection"/> to be added to the end of the collection.</param>
 public void AddRange(NUnitTestCollection items)
 {
     for (int i = 0; (i < items.Count); i = (i + 1))
     {
         Add(items[i]);
     }
 }
Beispiel #2
0
 /// <summary>
 /// Adds the elements of a <see cref="NUnitTestCollection"/> to the end of the collection.
 /// </summary>
 /// <param name="items">The <see cref="NUnitTestCollection"/> to be added to the end of the collection.</param> 
 public void AddRange(NUnitTestCollection items) {
     for (int i = 0; (i < items.Count); i = (i + 1)) {
         Add(items[i]);
     }
 }
Beispiel #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NUnitTestCollection"/> class
 /// with the specified <see cref="NUnitTestCollection"/> instance.
 /// </summary>
 public NUnitTestCollection(NUnitTestCollection value) {
     AddRange(value);
 }
Beispiel #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NUnitTestEnumerator"/> class
 /// with the specified <see cref="NUnitTestCollection"/>.
 /// </summary>
 /// <param name="arguments">The collection that should be enumerated.</param>
 internal NUnitTestEnumerator(NUnitTestCollection arguments) {
     IEnumerable temp = (IEnumerable) (arguments);
     _baseEnumerator = temp.GetEnumerator();
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="NUnitTestCollection"/> class
 /// with the specified <see cref="NUnitTestCollection"/> instance.
 /// </summary>
 public NUnitTestCollection(NUnitTestCollection value)
 {
     AddRange(value);
 }
        /// <summary>
        /// Initializes a new instance of the <see cref="NUnitTestEnumerator"/> class
        /// with the specified <see cref="NUnitTestCollection"/>.
        /// </summary>
        /// <param name="arguments">The collection that should be enumerated.</param>
        internal NUnitTestEnumerator(NUnitTestCollection arguments)
        {
            IEnumerable temp = (IEnumerable)(arguments);

            _baseEnumerator = temp.GetEnumerator();
        }