Top "Tdd" questions

Test-Driven Development (TDD) involves writing a failing automated test to specify what is to be built.

Rhino Mocks step-by-step tutorials

I realise that there exist some posts such as this one which have asked the same question. However, the links …

tdd rhino-mocks rhino-mocks-3.5
App.config in Test Projects

I'm building an ASP.NET app in VS2010. I have a number of separate assemblies (class libraries) and corresponding Test …

.net asp.net tdd .net-assembly
Team Foundation Build or TeamCity?

We are a mostly MS shop at work doing .NET LOB development. We also use MS Dynamics for our CRM …

tfs tdd continuous-integration teamcity tfsbuild
Python unittest: Generate multiple tests programmatically?

Possible Duplicate: How to generate dynamic (parametrized) unit tests in python? I have a function to test, under_test, and …

python tdd unit-testing
What do I use instead of Whitebox in Mockito 2.2 to set fields?

When using Mockito 1.9.x I have been using Whiteboxto set values of fields to "inject" mocks. Se example below: @Before …

java tdd mockito junit4 powermock
Unit Tests vs. Acceptance Tests

Are you for one or the other? Or both? My understanding is unit tests: validate the system from the developer's …

unit-testing testing tdd acceptance-testing
Mocking Static methods using Rhino.Mocks

Is it possible to mock a static method using Rhino.Mocks? If Rhino does not support this, is there a …

c# tdd mocking rhino-mocks
xUnit not awaiting async test

On VS 2013, I can't get this async test to fail. I have xUnit 1.8.0.1539 (installed from nuget), with the xUnit Test …

c# unit-testing asynchronous tdd xunit.net
Useful design patterns for unit testing/TDD?

Reading this question has helped me solidify some of the problems I've always had with unit-testing, TDD, et al. Since …

unit-testing design-patterns testing tdd
Best Practices of Test Driven Development Using C# and RhinoMocks

In order to help my team write testable code, I came up with this simple list of best practices for …

c# unit-testing tdd rhino-mocks