Когда у меня есть Dictionary<string, int> actual
, а затем создается совершенно новый Dictionary<string, int> expected
с теми же значениями, что и у фактического.
Вызов Assert.That(actual, Is.EqualTo(expected));
делает тестовый проход.
При использовании Assert.That(actual, Is.EquivalentTo(expected));
тест не проходит.
В чем разница между EqualTo()
и EquivalentTo()
?
Редактировать:
Сообщение об исключении, когда тест не проходит, выглядит следующим образом:
Zoozle.Tests.Unit.PredictionTests.ReturnsDriversSelectedMoreThanOnceAndTheirPositions:
Expected: equivalent to < [Michael Schumacher, System.Collections.Generic.List`1[System.Int32]] >
But was: < [Michael Schumacher, System.Collections.Generic.List`1[System.Int32]] >
Мой код выглядит следующим образом:
[Test]
public void ReturnsDriversSelectedMoreThanOnceAndTheirPositions()
{
//arrange
Prediction prediction = new Prediction();
Dictionary<string, List<int>> expected = new Dictionary<string, List<int>>()
{
{ "Michael Schumacher", new List<int> { 1, 2 } }
};
//act
var actual = prediction.CheckForDriversSelectedMoreThanOnce();
//assert
//Assert.That(actual, Is.EqualTo(expected));
Assert.That(actual, Is.EquivalentTo(expected));
}
public Dictionary<string, List<int>> CheckForDriversSelectedMoreThanOnce()
{
Dictionary<string, List<int>> expected = new Dictionary<string, List<int>>();
expected.Add("Michael Schumacher", new List<int> { 1, 2 });
return expected;
}