Top "Tdd" questions

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

Can unit testing be successfully added into an existing production project? If so, how and is it worth it?

I'm strongly considering adding unit testing to an existing project that is in production. It was started 18 months ago before …

unit-testing testing tdd
Asserting that a method is called exactly one time

I want to assert that a method is called exactly one time. I'm using RhinoMocks 3.5. Here's what I thought would …

tdd mocking rhino-mocks assertions
TDD/BDD screencast/video resources

I've recently finished watching the Autumn of Agile screencasts and I'm looking for more material of similar scope. Basically, I'm …

video tdd bdd
Unit testing Scala

I just recently started learning the Scala language and would like to do it in TDD-way. Could you share your …

unit-testing scala tdd
Test Driven Development with C++

Looking to start doing TDD in C++. I've seen CPPUnit, but I was wondering if there are other options that …

c++ tdd cppunit
What is the purpose of @SmallTest, @MediumTest, and @LargeTest annotations in Android?

I'm new to Android and I've seen example code using these annotations. For example: @SmallTest public void testStuff() { TouchUtils.tapView(…

java android unit-testing tdd android-espresso
Verify value of reference parameter with Moq

I just switched to Moq and have run into a problem. I'm testing a method that creates a new instance …

c# mocking tdd moq-3
Beginning TDD - Challenges? Solutions? Recommendations?

OK, I know there have already been questions about getting started with TDD.. However, I guess I kind of know …

unit-testing language-agnostic tdd
PHPUnit tests real example

I've created a mail wrapper class. I know that there are lots of libraries to send e-mails but i want …

php email tdd phpunit wrapper
Running Rake tasks in Rspec Tests

I am building up an integration test suite and there is one bit of logic that I need to have …

ruby ruby-on-rails-3 rspec tdd rake