← Back to team overview

nunit-core team mailing list archive

[Bug 920472] [NEW] CollectionAssert.IsNotEmpty must dispose Enumerator

 

Public bug reported:

    protected static bool IsEmpty(IEnumerable enumerable)
    {
      ICollection collection = enumerable as ICollection;
      if (collection != null)
        return collection.Count == 0;
      else
        return !enumerable.GetEnumerator().MoveNext();
    }

enumerable.GetEnumerator() - is not disposed

** Affects: nunitv2
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
https://bugs.launchpad.net/bugs/920472

Title:
  CollectionAssert.IsNotEmpty must dispose Enumerator

Status in NUnit V2 Test Framework:
  New

Bug description:
      protected static bool IsEmpty(IEnumerable enumerable)
      {
        ICollection collection = enumerable as ICollection;
        if (collection != null)
          return collection.Count == 0;
        else
          return !enumerable.GetEnumerator().MoveNext();
      }

  enumerable.GetEnumerator() - is not disposed

To manage notifications about this bug go to:
https://bugs.launchpad.net/nunitv2/+bug/920472/+subscriptions


Follow ups

References