Created
January 7, 2019 21:26
-
-
Save alefcarlos/467ba1323abd23086a31b2c8020c8809 to your computer and use it in GitHub Desktop.
Test without Shouldly
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Xunit; | |
namespace Problems.Tests | |
{ | |
public class HelpersTess | |
{ | |
[Fact] | |
public void Sum_ShouldBeSuccess() | |
{ | |
// Helpers.Sum(1, 2).ShouldBe(3); | |
Assert.Equal(3, Helpers.Sum(1, 2)); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment