I walk through the FrontStore series on TDD in MVC ( Part 3 by Rob Conery / ASP.NET). The testing I'm worried about is CatalogRepository_Each_Category_Contains_5_Products () . Until I got to this test, everything was fine. Now I went through every line that this test does (including the test itself, TestCatalogRepository, ...). I also compared my code with Rob's code, but the test continues to fail.
I also checked the source code from CodePlex, this test was not there.
Now, I wonder if I can put a breakpoint somewhere to check the local values when running the test? If not, something like that?
Thanks for the help.
source
share