Skip to content

Instantly share code, notes, and snippets.

@carlosschults
Created August 8, 2017 01:41
Show Gist options
  • Save carlosschults/c840590dab95a023d4530962fca048db to your computer and use it in GitHub Desktop.
Save carlosschults/c840590dab95a023d4530962fca048db to your computer and use it in GitHub Desktop.
[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