Created
June 27, 2021 21:29
-
-
Save mstfymrtc/6ea8b63e54a4961044a803ae8383121c to your computer and use it in GitHub Desktop.
This file contains hidden or 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 NUnit.Framework; | |
namespace Example.Tests | |
{ | |
public class Tests | |
{ | |
[Test] | |
public void Sum_GivenSecondArgumantAsZero_ShouldCalculateProperly() | |
{ | |
var actual = Utilities.Sum(1,0); | |
var expected = 1; | |
Assert.AreEqual(expected,actual); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment