Skip to content

Instantly share code, notes, and snippets.

@stoolrossa
Created July 26, 2013 09:53
Show Gist options
  • Save stoolrossa/6087688 to your computer and use it in GitHub Desktop.
Save stoolrossa/6087688 to your computer and use it in GitHub Desktop.
[TestClass]
public class PriceListTest
{
[TestMethod]
public TestLookupPrice()
{
// Arrange
var priceList = new PriceList();
// Act
var result = priceList.LookupPrice("Little Creatures Pale Ale");
// Assert
Assert.AreEqual(7, result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment