Tagged Questions
0
votes
1answer
119 views
RSpec undefined method 'should'
I am getting an undefined method for 'should' in my controller tests and cannot figure out why. I spent some time on google and stack overflow, but am stuck. Any help?
Spec Helper:
require ...
0
votes
6answers
120 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 ...
10
votes
3answers
291 views
Unit Test vs Integration Test in Web Development [closed]
I would like to ask about using Unit Testing in Web Development. The idea of Unit Testing is great but does it really bring value in the context of web application? Second part of my question is about ...
0
votes
0answers
51 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
0answers
16 views
Registering a javax.mail.event.TransportListener with a Spring test layer
I need to register a javax.mail.event.TransportListener with the test layer of my Spring application in order to be able to determine whether or not emails are being sent.
Can anyone please provide ...
0
votes
0answers
29 views
Ideas for Automated iCloud Testing?
Does anyone have experience on automated iCloud testing? What I came up with up to now is only, using KIF or alike, to test drive the application on two devices with iCloud enabled. But KIF is not ...
1
vote
2answers
101 views
type of test when simulating a web service call
I call a web service that returns a json string to me.
I would like to test this call by creating a text file with the content of the service call and test against this rather than the actual web ...
1
vote
1answer
135 views
Ruby - A pragmatic approach to software testing using TDD/BDD
Although TDD/BDD is ideal and as time is limited, you cannot always have 100% test coverage and always write test before implementing features, so, what is your approach to have a well tested project ...
3
votes
3answers
137 views
Software testing: test remote API or just use a mock?
Let say your website need to call Twitter API to perform some tasks, you have several options:
Only use mock
Use mock in unit test, but use production api in integration test
Only call production ...
4
votes
1answer
124 views
Integration testing frameworks for testing a distributed system?
I have a distributed system with components spread across multiple boxes. They talk to each other using tcp or multicast. Each components interchanges messages with each other - these are basically ...
2
votes
3answers
185 views
Is it possible to reuse code for integration and unit tests?
I work with a distributed system that has unit and integration tests. I am trying to save time and maintenance efforts by reusing code between integration and unit tests. For this I implemented an ...
3
votes
1answer
281 views
Testing strategy. PHPUnit mocks whithin zend framework controller integration/smoke tests
I have a complex backend application, using zf 1.11.11 and phpunit 3.5.15. The application has some complex communication components (soap, rest, etc.). In the CIS or dev testing environment I have to ...
0
votes
1answer
134 views
TDD - how to define scope of integration test having isolated unit tests in place?
Suppose I'm working on new feature using some pieces of code from existing codebase.
I'm test driving my design, so I have isolated tests with stubbed/mocked collaborators for my feature parts. Now ...
2
votes
4answers
157 views
Testing - nomenclature
Classes are often tested by using tests written in the following sort of syntax, which is provided by a large set of testing frameworks (e.g. Ruby's Unit::Test; or as in this example, MiniTest):
...
3
votes
4answers
143 views
Testing: How to test that view contains desired data
Say a Chef can make Recipes, and Sous-Chefs can create Recipes that must be approved by a Head Chef.
You want to test that, when a Head Chef views her homepage, she sees Recipes that she herself ...
8
votes
4answers
223 views
Should I test my controllers (MVC)?
I've been using TDD for several months, now I would like to learn how to test my Controllers (MVC).
Unit tests are made by testing the smallest unit of each functionality. Sometimes, controllers ...
2
votes
2answers
85 views
assistance with classifying tests
I have a .net c# library that I have created that I am currently creating some unit tests for.
I am at present writing unit tests for a cache provider class that I have created. Being new to writing ...
2
votes
2answers
111 views
Integration tests through Facebook's authentication
I'm developing an application that the only way to access the protected pages is through the Facebook's authentication. In this cenario, I need to login with a Facebook's test user and made my tests.
...
1
vote
5answers
186 views
Test: stub vs real implementation
I have been wondering about the general use of stubs for unit tests vs using real (production) implementations, and specifically whether we don't run into a rather nasty problem when using stubs as ...
1
vote
1answer
62 views
What would be a proper way of integration testing JavaScript interacting with local storage?
After listening to the JavaScript Weekly podcast, where I heard about the jQueryLocalStorageTexteareas plugin, I decided to try to implement this myself.
What it basically does is save a textarea's ...
3
votes
2answers
432 views
BDD 'Given' step description and implementation
How do you usually describe and implement 'Given' step for scenario?
High level state description OR explicit data definitions?
Fill database or stub repository?
High level state description
...
2
votes
2answers
335 views
Understanding testing (BDD) — Can I skip Unit Test duplicating something that is already covered in certain Integration Test?
Note: There was the similar question before ( BDD And Unit Testing ) but it doesn't have an actual straight answer. Just link to the book.
Assume we test a profile page. User submit his data.
...
3
votes
3answers
292 views
Suggestions for mocking an XMPP server
I have need to mock an XMPP server for testing purposes. My current intention is to run a local XMPP server and tie in my test code there, but I wonder if anyone is aware of an XMPP mocking library ...
10
votes
4answers
2k views
Unit Test? Integration Test? Regression Test? Acceptance Test?
Is there anyone that can clearly define these levels of testing as I find it difficult to differentiate when doing TDD or unit testing. Please if anyone can elaborate how, when to implement these?
1
vote
3answers
56 views
Integration Testing a filter operation output for a store
I want to run integration tests on my store filters e.g.
I filter by price and by different product attributes
are there pattern or best practices on how to assert on such a test, I'll illustrate an ...
5
votes
1answer
194 views
When and how much should I test third-party code integration when practicing behavior driven development (BDD)?
Context: I am trying to practice BDD in a Ruby on Rails environment using Capybara/Steak for integration tests, so that will be the example I use, but this question is a general question about BDD ...
5
votes
2answers
160 views
TDD Test Structure Question
So say I'm doing TDD and I write a test like this:
public void testDeposit()
{
Bank b = new Bank();
b.deposit(100);
AssertEquals(100, b.balance);
}
Then I go and make the test pass, ...
0
votes
4answers
626 views
Integration Test for JUnit
I am very new to TDD in general so please forgive me if my question does not make lots of sense.
After looking looking around for a bit, it seems that jUnit is capable of implement integration test. ...
2
votes
2answers
425 views
What is the best strategy for BDD testing which relies on data
What are some strategies for writing BDD tests, which can test behaviour that relies on certain data being in the system?
For example, say I was working with the following scenario:
Feature: Search ...
4
votes
4answers
766 views
Should BDD be automated with unit tests, integration tests, or both?
BDD has been touted as "TDD done right".
However TDD is widely used with unit tests, rather than end-to-end integration tests.
Which kind of test is most appropriate for BDD?
Should we write only ...
4
votes
3answers
236 views
Testing smart wrappers for 3rd party libraries
Suppose you are required to use an unnecessarily complicated, difficult to mock (perhaps it has concrete classes with no virtual interface), and unreliable third-party library that integrates with ...
1
vote
1answer
2k views
Rspec test fails missing template format issue
I am trying to implement some integration tests for my application to test a voting system I have in place but have run into some problems. First off, here is the test code I am trying to get to ...
3
votes
2answers
1k views
Node.js: Shall I use Vows or Expresso or NodeUnit or Zombie.js or All?
What shall I use when developing a node.js application?
3
votes
4answers
223 views
Would a Unit Test add any value to this example of a DAL provider beyond an Integration Test?
public List<int> GetPortfolioList()
{
using (var connection = new SqlConnection("<connectionString>"))
using (var command = new SqlCommand("SELECT * FROM Portfolio", connection))
...
1
vote
3answers
404 views
Efficiency pitfalls of doing both Integration and Acceptance testing (automated)
The advantages of unit-testing are obvious to me, they are done by developers themselves (either test or code-first) and are automated.
What I am a bit unsure about is whether developers should also ...
1
vote
2answers
63 views
Is it a good idea to inject a TestSettings parameter to a method to make it (Unit or integration) Testable?
Is it a good practice to introduce a TestSettings class in order to provide flexible testing possibilities of a method that has many processes inside?
Maybe not a good example but can be simple: ...
4
votes
4answers
633 views
A standard event messaging system with AJAX?
Is there any standards or messaging framework for AJAX?
Right now I have a single page that loads content using Ajax. Because I had a complex form for data entry as part of my content, I need to ...
1
vote
3answers
128 views
In few words, what can be said about Mocking process in TDD
I'd like to brush my brain to avoid confusions. In few words, what can be said about Mocking process in TDD
What's the GREAT idea behind MOCKING?
Mocking frameworks are meant to be used only to ...
0
votes
3answers
414 views
Mock versus Implementation. How to share both approaches in a single Test class?
See the following Mock Test by using Spring/Spring-MVC
public class OrderTest {
// SimpleFormController
private OrderController controller;
private OrderService service;
private ...
13
votes
5answers
250 views
TDD: “Test Only” Methods
Looking for some practical advice here and any experiences people have had in a similar situation.
We use a BDD/TDD sytle methodology for building our software (quite a large/complex application) The ...
1
vote
2answers
480 views
Integration test: create vs new in controller
edited: followed suggestions. See at end of question.
I have a controller with two functions:
def new
if login_required
@discussion = Discussion.new
respond_to do ...
5
votes
1answer
485 views
Test Driven Development/Integration Testing in RIA development
When working with RIA development, there's at least three critical levels that should be tested:
RIA application classes - in Flash/Flex these could be tested using AsUnit, FlexUnit or any other ...
13
votes
12answers
2k views
Why using Integration tests instead of unit tests is a bad idea?
Let me start from definition:
Unit Test is a software verification and validation method in which a programmer tests if individual units of source code are fit for use
Integration testing is the ...
1
vote
3answers
181 views
When not to Use Integration Tests
I am writing an application that uses 3rd party libraries to instantiate and make some operations on virtualmachines.
At first I was writing integration tests to every functionality of the ...
0
votes
3answers
273 views
How to test drive a networking application with custom protocol?
I'm currently developing two Java networking applications for school projects. One over TCP and the other one over UDP. In both I have to implement simple custom protocol.
Even though I'm trying ...
6
votes
12answers
1k views
How much testing is enough? [closed]
I recently spent about 70% of the time coding a feature writing integration tests. At one point, I was thinking “Damn, all this hard work testing it, I know I don’t have bugs here, why do I work so ...
2
votes
2answers
672 views
What is the best way to automate integration testing MSMQ with Visual Studio Test suite / NUnit?
I would like to create a series of automated unit tests for an MSMQ application I am writing. As I see it, the challenge is how to accommodate the event handlers from the test method. That is, I ...
6
votes
8answers
841 views
Performance testing best practices when doing TDD?
I'm working on a project which is in serious need of some performance tuning.
How do I write a test that fails if my optimizations do not in improve the speed of the program?
To elaborate a bit:
...
2
votes
9answers
371 views
What kinds of unit tests pay off the most in business value?
My question assumes that folks already believe that unit tests of some sort are worthwhile and actually write them on their current projects. Let's also assume that unit tests for some parts of the ...
5
votes
8answers
403 views
Do you TDD for debugging fix?
I know there's a lot of stuff on TDD and i'm trying to pick up the practice too.
But i wonder is it a good idea to to TDD your bug fix too?
I was thinking along the lines of find the bug and narrow ...

