Solution: How do you unit test a unit test? #fix #computers #answer
Solution: How do you unit test a unit test? #fix #computers #answer
How do you unit test a unit test?
I was watching Rob Connerys webcasts on the MVCStoreFront App, and I noticed he was unit testing even the most mundane things, things like:
public Decimal DiscountPrice { get { return this.Price - this.Discount; } }
Would have a test like:
[TestMethod] public void Test_DiscountPrice { Product p = new Product(); p.Price = 100; p.Discount = 20;…
View On WordPress













