Tagged Questions
0
votes
1answer
29 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 ...
2
votes
1answer
52 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
24 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 ...
0
votes
2answers
54 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
1answer
37 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
2answers
76 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 ...
2
votes
1answer
55 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
29 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 ...
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 = ...
0
votes
1answer
36 views
Doubts on correct BDD approach in Rails
I am doing BDD in the following way:
-> Creating Cucumber scenarios (for Integrational tests)
-> Create the needed Model Rspe Unit tests
--> Back to the Cucumber scenarios.
However, I ...
2
votes
3answers
35 views
Is there a way to force RSpec to re-evaluate a let statement?
This example is a bit contrived, but explains the use case well.
let( :number_of_users ){ User.count }
it 'counts users' do
User.create
number_of_users.should == 1
User.create
...
0
votes
2answers
68 views
Acceptance Test Driven development of a service with several clients
I have a question related to acceptance test driven development (ATDD). My application is developed as a REST Service which might have several clients - web site, mobile, desktop. The ATDD concept ...
0
votes
2answers
43 views
Developing an Operating System using TDD/BDD
I just wonder. Is there anybody in the world, using TDD or BDD to write an OS? And is this even posible? I've tried to google it, but didn't find any kind of information.
So, guys. Is it possible to ...
0
votes
6answers
121 views
Should I use TDD and BDD if my project is changing fast? [closed]
I have my own little project I am creating using RoR, I plan it to have small-medium load.
With no doubt I started with BDD and TDD (Cucumber and RSpec to be exact, but I am also experienced with ...
1
vote
1answer
144 views
Can anybody point me in the right direction with a BDD ATDD and TDD kata?
So ive been given a Kata to work on over the weekend. And before starting it I really just wanted to gather some thoughts. Okay but yes you already know this is a test but ok, IM NOT LOOKING FOR THE ...
1
vote
2answers
60 views
How to test internal functions, which are needed for internal purposes, using Jasmine
(function(window,document){
var _trimString = function( string ){
var trimString;
trimString = string.replace(/^\s+|\s+$/g,'');
return trimString
};
var displayCorrectText = ...
0
votes
0answers
52 views
Any good resource for doing End to End Testing in .Net?
I have been trying to adopt TDD and more specifically BDD. I know all the fancy terms, I know what should be done but I don't have any guidance/person to assist me. Its like learning to drive without ...
0
votes
1answer
62 views
Javascript TDD/BDD uiser interface. How to test a form
I am trying really hard to find a way of testing a javascript user interface. That is a fancy form, with a few fields that are locked depending on checkbox clicks, with ajax population of selects, and ...
3
votes
1answer
135 views
Continuous Integration and Acceptance Test Driven Development
I have a question related to Acceptance Test Driven Development (ATDD). According to the process, I start every feature with an acceptance test (end-to-end test). I commit these tests and they are ...
1
vote
2answers
78 views
In RSpec - how can I test if one attribute is less (or more) than another
In my app I want to have a Car model.
It will have two fields among others: date_from and date_till (to specify a period of time someone was using it).
And I want the model to validate that ...
0
votes
0answers
34 views
Testing browser extensions
I'm going to write bunch of browser extensions (the same functionality for each popular browser). I hope, that some of the code will be shared, but I'm not sure about this yet. For sure some of ...
1
vote
3answers
112 views
How to do a smoke Test and Acceptance test in a Javascript Aplication?
I want to do a smoke test in order to test the connection between my web app and the server itself. Does Someone know how to do it? In addition I want to do an acceptance tests to test my whole ...
2
votes
3answers
166 views
How to get started with TDD using Winforms
I have read/watched so much about TDD & BDD recently that I really want to master it. I have been a developer that only writes code and then tests it from outside (like we always started). The ...
1
vote
0answers
33 views
creating a feature spec to test a form that has a file upload field
how are people handling this situation:
I have a form that takes an image. How do I verify whether or not the image was accepted? Or is this not something you should verify at this level of testing? ...
1
vote
1answer
96 views
Acceptance tests dealing with GUI?
Any good software architects would be agree that when someone builds a new project from scratch, he mustn't carry about boundaries at the beginning (database, GUI, external services etc...)
Indeed, he ...
14
votes
4answers
263 views
Continuous third party APIs monitoring & testing on Rails
We would like to setup automated jobs (via Jenkins) to alert if the third party API is down or they deployed an incompatible APIs.
I am talking about to test against the real HTTP APIs and not a ...
0
votes
1answer
56 views
How would I write test for following controller
I am new to rspec and was wondering how could I write functional test for following two action of controller
class FeedbackFormsController < ApplicationController
before_filter ...
1
vote
0answers
212 views
What is the best way to do TDD/BDD for ember.js? [closed]
Found one approach with Jasmine: Ember.js TDD – how to test your ember views
Has anyone used this approach? Are there any other/better ways of doing TDD/BDD for Ember?
3
votes
2answers
131 views
How do I break down a “full stack” feature into acceptance, integration, and unit tests?
I am new to Behavior Driven Development and I am trying to learn it. I am using MSpec & Watin for acceptance tests and MSpec for Unit tests with ASP.Net MVC 4. I have a simple scenario of user ...
0
votes
1answer
53 views
How to write independent functional test
I really don't get how to write an "independent" behavior test.
E.G. A user can add an address to address book.
So I have an address book class. I write a test to add an address. But how do I verify ...
0
votes
1answer
26 views
How to create a sequence without a model with FactoryGirl?
I want to create a sequence without creating a model Foo:
let( :foo_id ){ sequence...? }
The following code works, but creates a model Foo.
Factory:
FactoryGirl.define do
sequence :id do |i|
...
3
votes
0answers
138 views
What are best practices for writing tests for a Sinatra API? [closed]
Specifically, I would like to know how to separate unit and acceptance tests.
Unit test looks like:
it 'creates bar' do
expect {
post '/foo/bar'
}.to change{ Bar.count }.by 1
end
This is ...
3
votes
2answers
119 views
What are some good services or tools to use for remote pair programming?
I have used screen sharing (via Skype and joinme), as well as tmux.
tmux provides a more interactive experience, but I find the delay to be annoying.
What are the best services and tools to use for ...
1
vote
4answers
148 views
Arrange Act Assert Alternatives
The general question is are there alternative patterns to AAA for unit testing?
If, yes, would be very interesting to see some examples and hear about their pros and cons.
And as the simplest example ...
3
votes
0answers
400 views
TDD / BDD in javascript - should.js vs expect.js vs chai.js - what are the advantages of each? [closed]
There are many excellent choices for TDD/BDD assertion in javascript. It seems like many of them accomplish the same things.
What are the differences/advantages for using should.js vs. expect.js? Is ...
0
votes
1answer
162 views
How to mock Net::HTTP::Post?
Yes, I know it is best to use webmock, but I would like to know how to mock this method in RSpec:
def method_to_test
url = URI.parse uri
req = Net::HTTP::Post.new url.path
res = ...
-2
votes
1answer
133 views
Tutorials of TDD, BDD and RSpec? [closed]
I am new to rails and want learn the TDD,BDD and RSpec. So can anyone suggest me some good tutorials of TDD,BDD and RSpec.
Thank You!!
1
vote
2answers
77 views
Is there a good way to share code beween a Rails App and an API?
We have a Rails App and a Sinatra API with separate codebases. They need to work together with the same database.
We can create a record using the API, and then display a page for that record using ...
2
votes
2answers
166 views
Is it possible to study BDD without prior TDD experience? [closed]
I have no experience neither in TDD nor in BDD. Yes I've created unit tests for existing code a lot, but it's not relevant here. Also I cann't use TDD/BDD at my job but want to try in some hobby ...
1
vote
0answers
36 views
NJasmine in Production
Is anyone using NJasmine in a production project right now? I'm loving the idea of a simpler TDD solution sort of like "developer level TDD". NJasmine looks awesome but also very young. Is anyone ...
0
votes
1answer
81 views
Rspec mocking for testing queries of an associated record
I have the following model:
class Kueue < ActiveRecord::Base
attr_accessible :name, :user_id
belongs_to :user
has_and_belongs_to_many :photos
scope :empty, ...
1
vote
1answer
55 views
Mixing multiple testing frameworks & suites together
Does anyone know a good way to mix and merge multiple testing frameworks together so that they can all be run in batch and return an solid overall total of which tests failed for which frameworks and ...
1
vote
1answer
283 views
Simplifying and correct RSpec controller tests
I have a few RSpec controller tests. Some work, some don't, and I'm trying to figure out how on Earth to fix them up and make them more efficient
Ideally, I would like to see if I can get each spec ...
2
votes
2answers
369 views
unobtrusive node testing
So, I'm new to testing in js and I'm trying to use mocha to test a node application.
Ideally I'd like to have it so that the tests are in a separate file and are run on the node script itself ...
1
vote
2answers
157 views
Testing all possible permutation of user interaction using SpecFlow or any other framework
My set up is following:
WPF client writting using MVVM pattern
A set of unit tests
A set of SpecFlow scenarious
When creating SpecFlow scenarios, I firstly draw a state machine diagram to see all ...
1
vote
2answers
242 views
Run unit test before check in
Using Visual Studio and TFS & preferably Specflow or standard unit test.
I want devs to run ALL unit test as a policy before check in. If a unit test breaks, then vS should stop them from ...
0
votes
1answer
403 views
Automated UI Tests for Cross Platform Phonegap app?
I have a Phonegap app that run on Android, iOS and BlackBerry. I would like to write automated UI tests that can be run against the apps for each of the platforms. For example, I would want to ...
17
votes
7answers
651 views
Is it good practise to do unit test coverage for even plain classes
Here is an example of an class with no behaviour at all. So the question is should I be doing unit test coverage for it, as I see it as unnecessary for it does have any behaviour in it.
public class ...
1
vote
0answers
117 views
TDD is about design not verification - what should I focus on? [closed]
All right, I've been questioning my self about this. What do we exactly mean by design and verification?
Should I just apply TDD to make sure my code is SOLID and not check its correct external ...
0
votes
1answer
121 views
TDD/BDD and model validation
I keep wondering what is the most common way to handle model validations in BDD/TDD? Do you write a test for every single field in the model, and validate on that? Do you write a single validation ...

