← Back to team overview

nunit-core team mailing list archive

[Bug 920472] Re: CollectionAssert.IsNotEmpty must dispose Enumerator

 

** Changed in: nunitv2
       Status: New => Triaged

** Changed in: nunitv2
   Importance: Undecided => Low

-- 
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:
  Triaged

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


References