Top "Bdd" questions

BDD stands for Behavior Driven Development.

Checking object equality in Jasmine

Jasmine has built-in matchers toBe and toEqual. If I have an object like this: function Money(amount, currency){ this.amount = …

javascript bdd jasmine object-comparison
Using object types with Jasmine's toHaveBeenCalledWith method

I've just started using Jasmine so please forgive the newbie question but is it possible to test for object types …

javascript tdd bdd jasmine
How do I verify jQuery AJAX events with Jasmine?

I am trying to use Jasmine to write some BDD specs for basic jQuery AJAX requests. I am currently using …

javascript jquery ajax jasmine bdd
What are the differences between JBehave and Cucumber?

I have read somewhere that JBehave is actually the Java equivalent of Cucumber, whereas Cucumber is based on Ruby. Can …

cucumber bdd jbehave
Very simple step by step JBehave setup tutorial?

Though I have read many, but many articles on how to use JBehave, I can't get it to work. Here …

java eclipse junit bdd jbehave
What are the differences between BDD frameworks for Java?

What are the pros and cons of each Behavior Driven Development (BDD) framework for Java? I've found some of them …

java bdd
Practicing BDD with python

Which are the most advanced frameworks and tools there are available for python for practicing Behavior Driven Development? Especially finding …

python testing bdd
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
Getting requirejs to work with Jasmine

I first want to say that I am new to RequireJS and even newer to Jasmine. I am having some …

javascript unit-testing requirejs bdd jasmine
jasmine unit testing - testing for an undefined property of an object

I have the following statement expect(A.["BAR"].name).toEqual("foo"); which due to the fact my object A has …

javascript unit-testing bdd undefined jasmine