Skip to content

Instantly share code, notes, and snippets.

@alefcarlos
Created January 7, 2019 21:26
Show Gist options
  • Save alefcarlos/467ba1323abd23086a31b2c8020c8809 to your computer and use it in GitHub Desktop.
Save alefcarlos/467ba1323abd23086a31b2c8020c8809 to your computer and use it in GitHub Desktop.
Test without Shouldly
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