-
I'm new to CSLA, and also unit testing in general, yet I'm newly assigned to a project that uses CSLA and they want to now write unit tests for it, and I'm lost. The project is a ASP.NET MVC 3 (c#) application, with a csla library that has umm inline? dataportal methods. The actual data fetching...
-
trying to use MockDb. here is the code: public List < ProjectDto > Fetch() { var result = from r in ProjectTracker.DalMock. MockDb .Projects select new ProjectDto { Id = r.Id, Name = r.Name, Description = r.Description, ParentID = r.ParentID, Alias = r.Alias, CapitalizationStage = r.CapitalizationStage...