Created
August 8, 2017 01:41
-
-
Save carlosschults/c840590dab95a023d4530962fca048db to your computer and use it in GitHub Desktop.
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
[Test] | |
public void IntroduceMethodShouldWorkCorrectly() | |
{ | |
var sut = new Employee("Alice", "Programmer", 100000); | |
var expected = "Hi! My name is Alice and I work as a Programmer."; | |
string result = sut.Introduce(); | |
Assert.AreEqual(expected, result); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment