BDD stands for Behavior Driven Development. It is related to, and derived from, TDD (Test Driven Development) and ATDD (Acceptance Test Driven Development), and differs in its language and vocabulary, preferring example, scenario or specification to test.
1
vote
1answer
11 views
Bail suite on mocha (sub)suite error but continue next?
I'm using mocha in node.js with have bdd-style specs.
Is it possible to bail a sub-suite after the first error but continue it's parent/sibling suites?
Say I test different routes to access an api, ...
0
votes
1answer
13 views
Behat/Mink: how can I evaluate a xml response
I am trying to test a RSS feed via Behat/Mink. Unfortunately I am getting an error message all the time:
The current node list is empty.
Does anyone know how to test an XML response (search for ...
0
votes
1answer
25 views
Leveraging Mocks in BDD and TDD (Spock + Mockito)
I am using Spock and Mockito and am having a difficult time figuring out how to get value from Mocks.
I am attempting to build RESTful Services for a REST interface called UserResource that ...
0
votes
1answer
15 views
Using assert in BDD steps
Should I use assert in any BDD steps other than in then steps?
I am attempting to understand how to use Specflow to describe "changing a user profile".
SCENARIO I can change a user
Given I am at ...
0
votes
1answer
16 views
Cucumber can't find steps when running a single feature
I've just installed cucumber into a new rails project (first time setting it up from scratch) and it works wonderfully when running all tests (bundle exec cucumber) but can't find any of my steps when ...
-1
votes
0answers
13 views
BDD (JBehave + Robotium)? [closed]
I have been looking for good Android BDD test framework. I already tried to use Calabash-Android and now trying to use jBehave + Robotium. I found one good article (Testing Android Apps with Robotium ...
1
vote
1answer
21 views
Strange behaviour with Behat/Mink for form filling
I use Behat and Mink for integration testing in my Symfony2 project and have used the following syntax across the site with success, but in one place I am getting really strange errors that don't seem ...
0
votes
0answers
12 views
Segment firewall rules in disjoint packet space segments
For my project to graduate as Bachelor of Computer Science, I have to write a tool to visualize the configuration of a firewall. So I read in the rules consisting of protocol, source IP, source port, ...
0
votes
0answers
32 views
Jasmine async call trouble
I am just getting started with jasmine unit testing and am running into some trouble with testing my async calls.
I have a ajax call that I am trying to test, and I tried it in the console so I know ...
0
votes
1answer
15 views
Can one GTW story drive > 1 JBhave Steps?
I've created a .story file with a GWT.
Contact_List.story
Scenario: Discover Contact
Given I've a contact list of friends
When one of them is online
Then that friend is displayed in a list
I'd like ...
0
votes
0answers
4 views
One Scenario to rule them all: Using JBehave and one GWT, how to drive ServiceLayer Steps and UI Layer steps?
I've got one feature to develop that's specified with a GTW scenario using behavioral language.
The steps are where questions come up: I can implement this test through the service, the DB, or through ...
0
votes
1answer
26 views
Firefox opens blank page instead of application url – Codeception and selenium2
I'm trying to use codeception for acceptance tests. I decided to use it with Selenium2.
Starting environment:
acceptance.suite.yml:
class_name: WebGuy
modules:
enabled:
- Selenium2
...
2
votes
1answer
48 views
Developing a whole application (not a single class) with TDD (BDD)? [closed]
After a lot of reading, learning examples and making simple class tests I desided to create my first simple real-life application using TDD.
My application should have the following behavior:
it's ...
1
vote
1answer
33 views
Best practice for FactoryGirl with deep association chains?
I am modeling a complex purchasing workflow in Rails that converts Requisitions to Orders. I'm using FactoryGirl to do my testing and all is well, until I try to test the OrderLineItem, which depends ...
0
votes
0answers
19 views
BDD: share stories (features) between python and java
We want to use BDD. Developers use Java while QA team uses python+selenium for tests. Developers want to run BDD on CI server with out of GUI while QA wants to run same stories with GUI/selenium on ...
0
votes
0answers
16 views
Wait for a response during a feature test using lettuce+splinter and django
Short story:
I am writing a feature test for a django app using lettuce and splinter.
The scenario fails due to some lack of sync at the step calls.
The question:
Is there a way to prevent this error ...
0
votes
1answer
23 views
User story definition in spock
I have recently started using the spock framework for BDD in my Java project.
I noticed that in a spock specification it is possible to define a feature and a given-when-then clause in a ...
0
votes
1answer
21 views
Are there any good BDD frameworks for Pax Exam? [closed]
I am trying to set up an environment to test our OSGi bundles using Pax Exam. We would like to integrate a BDD framework into this. The aim is to go beyond simple unit tests and to test the ...
3
votes
1answer
71 views
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 issues with the SpecRunner and require JS. I have been following the tutorials of Uzi Kilon and Ben Nadel ...
1
vote
2answers
45 views
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 = amount;
this.currency = currency;
this.sum = function (money){
...
0
votes
1answer
37 views
What are the Tools for writing stories for Jbehave?
I was wondering whether there're any tools assisting users in Writing stories for Jbehave ?
1
vote
1answer
23 views
Mocking methods of the object under test
Lately I've been writing some objects wherein the behavior of one method sometimes consists of calling another one of its own methods under certain conditions. To test this, I've been mocking the ...
2
votes
2answers
26 views
How can I trigger a keyup event and pass the key?
I have a field that "corrects" itself as you type. We have some code written that prevents this functionality when the arrow keys are pressed:
handleKeyUp: function(e) {
var arrowKeys = ...
0
votes
2answers
30 views
Kiwi + MagicalRecord method does not exist
I am using Kiwi framework to test the interaction between my code and Core Data through Magical Record library. Magical record defines a category on NSManagedObject, which adds few nice methods, such ...
0
votes
1answer
47 views
cucumber grails - feature with unimplemented steps still passes
I have very recently started trying out BDD using cucumber and grails. I'm following a tutorial from the cucumber recipes book, and have created a feature but not yet created the step definitions to ...
0
votes
0answers
14 views
How do I handle dependencies between scenarios in Lettuce?
I like using Lettuce to define test cases. In many cases, it's easy to write Lettuce scenarios in such a way that they can be run either atomically or as part of other scenarios in a feature. However, ...
0
votes
0answers
23 views
Set browser window size in a step
Im trying to write tests for a responsive website, and I want to write a step like so:
Given I am in the desktop view
or
Given I am in the mobile view
How can I accomplish this in lettuce?
I've ...
0
votes
0answers
21 views
atlassian confluence as source for bdd stories
I want to start using BDD in our company. The best place to keep stories from my point of view is the Atlassian Wiki pages. Obviously I expected some existing techniques for retrieving stories from ...
0
votes
2answers
50 views
Scalatest or Specs2 - Set up and teardown of variables in tests running in parallel
If I have some variables that I need set up for EACH TEST IN A SUITE, is it possible to somehow set them up and get them into the test without writing a suite for each test?
I.e., setup:
val ...
1
vote
3answers
37 views
How to create an article of the user
I am testing the controllers with RSpec, FactoryGirls.
It is my factories.rb
FactoryGirl.define do
factory :user do |user|
user.sequence(:name) { Faker::Internet.user_name }
user.email ...
0
votes
2answers
34 views
Writing specs for a class that behaves differently depending upon constructor arguments
If you have a class that responds differently depending upon constructor arguments, how do you go about writing a spec for that class?
class Route
{
function __construct($url, array $methods = ...
1
vote
1answer
36 views
Is there a way to unstub in RSpec?
Searched the Relish docs, but did not find a way to unstub in RSpec.
Is this possible?
0
votes
0answers
26 views
Framework for readable and maintainable acceptance tests
Im looking for an acceptance testing framework with readable syntax (like Cucumber's plain text specs) but as an internal domain specific language (DSL). First I was thinking about ScalaTest but non ...
1
vote
0answers
54 views
Failure/Error: click_link post.title ArgumentError: wrong number of arguments (1 for 0) Rspec & Capybara
require 'spec_helper'
describe "Posts pages" do
let!(:posts) { FactoryGirl.create_list(:post, 3) }
subject { page }
describe "Blog page" do
context "Listing all posts" do
before do
...
0
votes
0answers
42 views
How to migrate Selenium tests from JBehave to Cucumber?
We have got a suite of old Selenium BDD tests running on jBehave. The new generation of the tests has been written on Cucumber in Ruby. What is the easiest approach to migrate these tests to ...
0
votes
2answers
70 views
Rails Rspec error - undefined method `visit'
So I'm new to TDD & I'm throwing some Rspec errors here on my tests...Basically after running bundle exec rspec spec, I get an undefined method 'visit' error on some of my specs. Any help on how ...
0
votes
1answer
33 views
What does assigns mean in rspec
What does that line of code do?
assigns(:articles).should eq([article])
in the following rspec
describe "GET #index" do
it "populates an array of articles" do
article = ...
0
votes
1answer
48 views
Using Rspec to test ActiveRecord validations for similar fields
I recently started learning RoR and TDD, and am having trouble figuring out the best way to handle this scenario.
I have an ActiveRecord model with two fields which share the same validations.
How ...
0
votes
2answers
61 views
When Mocha Test fails it logs an object to console
When all my tests pass, everything works as expected. However, when a test fails with any reporter active, the runner prints an object representing the strack trace rather than the pretty formatted ...
2
votes
1answer
54 views
jQuery Plugin TDD Starting Point
I have some existing Javascript code that I'm looking to port to a jQuery plugin. The code itself is nothing complex: Flickr API photo gallery with varying photo sizes, a few other things. I coded it ...
0
votes
2answers
27 views
Is there an rspec test for exact length of an attribute?
I'm trying to test the length of a zip code attribute to ensure its 5 characters long. Right now I'm testing to make sure its not blank and then too short with 4 characters and too long with 6 ...
0
votes
1answer
43 views
A comparison of ScalaTest and Spock
How do scalatest and spock differ? what is the added-value of each ? Which is more agile for Behavior Driven Development (BDD)? Please could you share some thoughts on the matter ?
I want to start ...
0
votes
1answer
86 views
Configuring JBehave to run multithread TestNG tests
I'm trying to create a Proof-of-Concept of using JBehave and TestNG together. What I want to do, is to run a story simultaneously in multiple threads in order to test my codes thread safety.
I have a ...
1
vote
2answers
47 views
What makes a Feature and What a scenario in Gherkin and cucumber?
Say I am developing a Shopping cart, BDD, with Cucumber. A cart is rather complex and has many bells-and whistles, but this could be just as well for "a blog" or "a user profile".
I've always ...
3
votes
1answer
81 views
Behavior Driven Development for java what framework to use?
For the ongoing projects and for improving our development process we considered adopting TDD as development philosophy. While researching for best practices and how to "sell" the new approach to my ...
0
votes
1answer
109 views
Strange ordering of Kiwi iOS context blocks
I have a Kiwi spec file that looks something like this:
#import "Kiwi.h"
#import "MyCollection.h"
SPEC_BEGIN(CollectionSpec)
describe(@"Collection starting with no objects", ^{
MyCollection ...
0
votes
0answers
38 views
How to test a UICollectionViewLayout with Kiwi?
I need to test a UICollectionViewFlowLayout subclass with Kiwi,
I have correctly mocked up the delegate and the dataSource for a UICollectionView, but I'm still having some issues.
With the ...
1
vote
1answer
22 views
How can I default behat output to use ansi colors
I'm using behat2.4.5 on OSX 10.8.3, and behat is not automatically detecting ANSI / Color output compatibility.
I'm forced to run the statement as
bin/behat --ansi
Is there a way to make this ...
1
vote
3answers
86 views
Cucumber Pageobject - undefined method link
I want to use the PageObject link method in my class initialisation, but I can't manage to do it :(
Here what I'm trying to do:
class MyPage
include PageObject
def initialize
...
1
vote
1answer
36 views
How test STDIN in PHPUnit
I have reader class which read from stdin and return readed value.
class Reader
{
const STREAM_READ = 'php://stdin';
private $_streamHandle;
public function __construct($stream = ...
