nunit-core team mailing list archive
-
nunit-core team
-
Mailing list archive
-
Message #02044
[Bug 794115] Re: HashSet incorrectly reported
** Also affects: nunit-3.0
Importance: Undecided
Status: New
--
You received this bug notification because you are a member of NUnit
Core Developers, which is the registrant for NUnit Framework.
https://bugs.launchpad.net/bugs/794115
Title:
HashSet incorrectly reported
Status in NUnit Test Framework:
New
Status in NUnit V2 Test Framework:
Fix Committed
Bug description:
Sample code
-----------------
[Test]
public void SomeTest()
{
var actual = new HashSet<string>(new[] {"foo", "bar"});
Assert.That(actual, Is.EquivalentTo(new[] { "fo__", "bar" }));
}
Reported as
-----------------
Expected: equivalent to < "fo__", "bar" >
But was: <System.Collections.Generic.HashSet`1[System.String]>
Expected being reported as:
---------------------------------------
Expected: equivalent to < "fo__", "bar" >
But was: < "foo", "bar" >
Environment
-----------------
NUnit version 2.5.9.10348
To manage notifications about this bug go to:
https://bugs.launchpad.net/nunit-3.0/+bug/794115/+subscriptions
References