Sprint Planner Helper – Session 1
February 1, 2009
I started off very pure and true to the noble principles of TDD and Extreme OOP. Actually, I did decide on a few naming conventions first: the name of the product is Sprint Planner Helper and it will reside in the namespace Marcusoft.SprintPlannerHelper. I also created four projects like this (idea stolen from ASP.NET MVC Storefront):
Marcusoft.SprintPlannerHelper.Models- my domain modelMarcusoft.SprintPlannerHelper.Service- any services needed for the model, such as database access and so onMarcusoft.SprintPlannerHelper.Web- the ASP.NET MVC Web ApplicationMarcusoft.SprintPlannerHelper.Test- the unit tests of the application
Then I removed all the Class1.cs from all the projects that defaulted them to me. At this point, I realized that I was missing Visual Studio 2008 Power Commands and Resharper at the computer I was using. Had to download them -...