Top "Tdd" questions

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

railstutorial.org, Chapter 6. unknown attribute: password

I have finished Chapter 6 of railstutorial but all my User model specs have started failing soon after I added password &…

ruby-on-rails ruby-on-rails-3 rspec tdd railstutorial.org
Codeception - What is the difference between cest and cept?

I just started using TDD approach and came across codeception. I searched the web a lot but didn't find a …

php testing tdd codeception
Rails fixtures -- how do you set foreign keys?

I'm reading about Rails fixtures in this guide (thanks, trevorturk). It appears you define classes in a Yaml file and …

ruby-on-rails unit-testing testing tdd fixtures
How to make authenticated requests in mocha test using supertest and agent?

I'm having trouble getting my authenticated tests to run (server returns 401 Unauthenticated) after logging in. var should = require('should'), _ = require(…

node.js tdd mocha.js restful-authentication supertest
Examples of great software design and implementation

I hope this isn't a duplicate... What is the most solidly designed and implemented software system/framework/application that you've …

design-patterns oop open-source tdd solid-principles
Understanding stubs, fakes and mocks.

I have just started to read Professional Test Driven Development with C#: Developing Real World Applications with TDD I have …

unit-testing mocking tdd stubs
Access JBehave Examples table data in step

I would like to know if there is a way I can access examples table row data within a step …

java annotations tdd bdd jbehave
How to implement TDD in ASP.NET WebForms

I know that the reason that Microsoft came out with ASP.NET MVC was to make it simpler to do …

asp.net webforms tdd
How to run unit-tests in all browsers?

I've never used Selenium but I guess it's for simulating user interaction in all browsers. That's like integration tests. But …

javascript testing selenium tdd bdd