← Back to team overview

nunit-core team mailing list archive

[Bug 794115] [NEW] HashSet incorrectly reported

 

Public bug reported:

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

** 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/794115

Title:
  HashSet incorrectly reported

Status in NUnit V2 Test Framework:
  New

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


Follow ups

References