Top "Tdd" questions

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

AngularJS + Jasmine: Comparing objects

I'm just starting out writing tests for my AngularJS app and am doing so in Jasmine. Here are the relevant …

javascript unit-testing angularjs tdd jasmine
SEH exception with code 0xc0000005 thrown in the test body

I am writing a test using GoogleTest for the following class and I am getting the above error. class Base { // …

c++ visual-c++ tdd googletest
How to get started on TDD with Ruby on Rails?

I am familiar with the concepts (took testing classes in college), but I am not sure how to really use …

ruby-on-rails testing tdd
PHPUnit: how do I mock multiple method calls with multiple arguments?

I am writing a unit test for a method using PHPUnit. The method I am testing makes a call to …

php mocking tdd phpunit
What Makes a Good Unit Test?

I'm sure most of you are writing lots of automated tests and that you also have run into some common …

unit-testing language-agnostic tdd integration-testing testing-strategies
Should Private/Protected methods be under unit test?

In TDD development, the first thing you typically do is to create your interface and then begin writing your unit …

unit-testing tdd
eslint should be listed in the project's dependencies, not devDependencies

Either I don't understand dependencies vs. devDependencies in node 100% yet or eslint is just wrong here (not capable of analyzing …

javascript node.js tdd mocha enzyme
What are the primary differences between TDD and BDD?

Test Driven Development has been the rage in the .NET community for the last few years. Recently, I have heard …

unit-testing tdd bdd
Best way to create a test database and load fixtures on Symfony 2 WebTestCase?

I have a WebTestCase that executes some basic routes in my application. I want to, on the setUp method of …

symfony doctrine tdd
Mocha breakpoints using Visual Studio Code

Is it possible to add breakpoints to ones Mocha tests using Visual Studio Code? Normally when debugging code one need …

node.js visual-studio-code mocha tdd