Skip to content

Instantly share code, notes, and snippets.

@PiotrPerak
Last active November 23, 2018 06:02
Show Gist options
  • Save PiotrPerak/9ba78230d73509329c06fcc1cdf90edc to your computer and use it in GitHub Desktop.
Save PiotrPerak/9ba78230d73509329c06fcc1cdf90edc to your computer and use it in GitHub Desktop.
[Test]
public void It_does_this()
{
var testedObject = new TestedObjec();
var result = testedObject.DoThis();
// assert result
}
[Test]
public void It_does_that()
{
var testedObject = newTestedObjec();
var result = testedObject.DoThat();
// assert result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment