I am embarking upon my first journey of test driven development in C#. To get started I\'m using MSTest and Rhino.Mocks. I am attempting to write my first unit tests against my ICustomerRepository. It
I\'m using ADO.NET entity framework, and am using an AdventureWorks database attached to my local database server.For unit testing, w开发者_开发百科hat approaches have people taken to work with a data
I\'m interested in setting up a TDD environment for developing Vim scripts and rc files. As a simple example, say I want to have vim insert 8 spaces when I press the tab key. I would set up a script t
For TDD you have to Create a test that fail Do the simplest thing that could possible work to pass the test
I have not used Unit Testing so far, and I intend to adopt this procedure. I was impressed by TDD and certainly want to give it a try - I\'m almost sure it\'s the way to go.
I\'m trying to implement the strategy pattern using TDD. Each strategy item implements an interface. What\'s the best way to do this with TDD?
In TDD(Test Driven Development) development process, how to deal with the test data? Assumption that a scenario, parse a log file to get the needed column. For a strong test, How do I prepare the test
I\'ve been reading about MVC in which the authors suggest that testability is one of the major strengths of MVC. They go to compare it with ASP.NET WebForms and how difficult it is to test the code be
Is there any standards or messaging framework for AJAX? Right now I have a single page that loads content using Ajax. Because I had a complex form for data entry as part of my content, I need to vali
Hi! I recently tried developing a small-sized project in C# and during the whole project our team used the Test-Driven-Development (TDD) technique (xunit, moq).