Created
July 26, 2013 09:53
-
-
Save stoolrossa/6087688 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
[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