Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Provide additional information for assert failures #334

Open
codito opened this issue Dec 17, 2017 · 1 comment
Open

Provide additional information for assert failures #334

codito opened this issue Dec 17, 2017 · 1 comment
Labels
Help-Wanted The issue is up-for-grabs, and can be claimed by commenting sprint

Comments

@codito
Copy link
Contributor

codito commented Dec 17, 2017

Description

Default Assert methods should provide information in case of failures. They should at least answer the next question for a developer once a failure occurs. I've seen such behavior with CollectionAsserts, request to review other APIs as well.

Steps to reproduce

  1. Create a hello world test project
  2. Add two List<int> variables. var actual = { 1, 2, 3 } and expected = { 1, 3, 2 }
  3. Add an assert. CollectionAssert.AreEqual(expected, actual)
  4. Run tests

Expected behavior

A developer would immediately ask what were the elements if the collection doesn't match. Note the **additional** information below.

Failed   C.Tests.N.D
Error Message:
 CollectionAssert.AreEqual failed. (Element at index 1 do not match.)
 **Expected = { 2, 1, 3 }, Actual = { 1, 2, 3 }**
Stack Trace:
   at C.Tests.N.D()

Actual behavior

Failed   C.Tests.N.D
Error Message:
 CollectionAssert.AreEqual failed. (Element at index 1 do not match.)
Stack Trace:
   at C.Tests.N.D()

Environment

MSTest 1.2.0, VSTest 15.3.0, dotnet-sdk 2.0 (linux)

AB#2112230

@jayaranigarg jayaranigarg added enhancement Help-Wanted The issue is up-for-grabs, and can be claimed by commenting labels Dec 18, 2017
@GoFightNguyen
Copy link
Contributor

This is a great issue. If this functionality gets added, then great. But I think we should also consider using Fluent Assertions.

I used your example and Fluent Assertions for the asserts.

actual.Should().BeEquivalentTo(expected);
This passes, because it does not care about ordering.

If I do actual.Should().BeEquivalentTo(expected, o => o.WithStrictOrdering());, then the test output is

Message: Expected item[1] to be a collection with 3 item(s)Expected item[1] to be 3, but found 2.
Expected item[2] to be a collection with 3 item(s)Expected item[2] to be 2, but found 3.

Admittedly, that message has unnecessary and redundant information

Expected item[1] to be a collection with 3 item(s)
Expected item[2] to be a collection with 3 item(s)

I'll have to open an issue, because the previous version of Fluent Assertions did not include that cruft.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Help-Wanted The issue is up-for-grabs, and can be claimed by commenting sprint
Projects
None yet
Development

No branches or pull requests

6 participants