Test Driven Development involves writing a failing automated test to specify what is to be built. The test is then made to pass by writing code which satisfies the tested condition. Finally, the code is refactored.
3
votes
0answers
45 views
What coding practices do I use in Vaadin to ensure I can record Selenium scripts?
My team is about to start using Vaadin and wants to integrate Selenium tests to allow for Test-driven development.
However I've heard there are issues with recording Selenium scripts out of the box ...
2
votes
0answers
216 views
prepare called on a closed database rails rspec
I am trying to integrate BDD in my rails app via rspec. I am using guard and spork-rails to speed the monitoring process up. I am getting this error:
An error occurred in an after hook ...
2
votes
0answers
292 views
Is it possible to simulate drag and drop in casperjs and phantomjs like in selenium?
I am trying to simulate a Drag & Drop event that is done using JQuery in my site. Manually performing the "drag & drop" with my own JQuery "works", but after the form where the drag & drop ...
2
votes
0answers
109 views
How can I test the type of query Mongoid will generate?
I'm trying to assert, using RSpec, that a given Mongoid query will not load the record, just check for its existence, because the record is big (several MB), and the code needs to only know whether or ...
2
votes
0answers
114 views
How can I configure the Visual Stuidio 2010 “Test Results” window to automatically expand the “Group by” sections after a test run?
I am currently engaged in a large C#.NET 4.0 project and am doing so with a TDD aproach.
In our unit tests we have adopted a naming pattern based on the one in Roy Overshore's "The Art of Unit ...
2
votes
0answers
152 views
Red/Green test colors when using KIF for iPhone
Is there a way to add Red Green colors to the console for passing and failing tests on the KIF framework? I'm not sure if this is in the works or if it's possible. Maybe by running the tests from the ...
2
votes
0answers
101 views
Integrate Robolectric and JDave
I would like to know if there is an easy way to have these two frameworks work together, really like the JDave BDD syntax and the Robolectric framework to do test outside android environment.
Is this ...
1
vote
0answers
17 views
Test failure gives incomplete error message when using short syntax
There are 2 syntaxes (afaik) for writing tests with RSpec:
The classic/old way:
describe "when user_id is not present" do
before { @micropost.user_id = nil }
it "should not be valid" do
...
1
vote
0answers
19 views
Bypass login/authentication in OCUnit application tests
I just setup application tests with OCUnit for my iOS project and am trying to figure out what to do with authentication. My app has a forced login screen where the user is required to authenticate ...
1
vote
0answers
31 views
undefined method `use_transactional_fixtures
I was following a long with this tutorial on how to test rails apps and I came across this error:
/home/***/***/***/spec/spec_helper.rb:27:in `block in <top (required)>': undefined method ...
1
vote
0answers
24 views
Using / Mocking Request.Url when using MvcContrib TestHelper
I'm using MvcContrib.TestHelper, and initialize my controller like this:
var accountController = new AccountController();
var builder = new TestControllerBuilder();
...
1
vote
0answers
47 views
RSpec & Shoulda one-liner description output
A one-liner in RSpec such as...
it { should validate_presence_of(:title) }
...produces the descriptive output of:
"should require title to be set"
The line of code within the matcher for this ...
1
vote
0answers
28 views
What test suite should be for http library?
I want to write open source php library for http fetching, based on curl with unit tests. There will be features like, proxy tunneling, several network interfaces (if it available) usage, parallel ...
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
0answers
75 views
Can the TestNG “Failed Tests” output use line breaks?
When I run my TestNG tests I get the following truncated output for failed tests:
Failed tests: retrievedDataFromService(com.mydomain.ServiceTest): The returned data is not correct:(..)
The actual ...
1
vote
0answers
82 views
cocos2d unit testing. Undefined symbol
trying to convince myself of the benefits of unit testing and TDD I decided to include tests with my latest Cocos2D project. Getting the initial boiler-plate test up and running works fine, but alas, ...
1
vote
0answers
64 views
Infinitest does not run @Before{Method,Class} methods when more than one TestNG group is used
I created a sample Eclipse project that demonstrates that Infinitest skips setup methods annotated with Before{Method,Class}, see https://github.com/jaeckel/InfinitestSampleProject. Because of this my ...
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 ...
1
vote
0answers
158 views
Unit testing, IoC, DI and mocking objects within a WCF service
I have a WCF service (INTWCF) that consumes another WCF service (EXTWCF). EXTWCF exposes 5 operations, will be hosted on an external app server (in a DMZ), and implements message and transport level ...
1
vote
0answers
32 views
How would one test uploading a document to a webapp?
I am working on customizing a web application and it involves some files being uploaded, then moved around, then based on my actions, the app should do some actions. Specifically, I'm customizing ...
1
vote
0answers
96 views
Django TDD testing metrics
I want to adopt TDD/BDD for my project, as a learning experience, and also because I'm legitimately interested in the practices. [So far, I've been writing code first, and then writing tests, since so ...
1
vote
0answers
180 views
Test details not provided with Guard + Rspec under Ubuntu with Gem libnotify
I'm setting up the testing of my rails apps with the combination of Guard, Spork and Rspec.
Everything seems to be correctly installed and I got the notification of the tests through libnotify.
...
1
vote
0answers
184 views
How to mock inheritance chain in C++ with google mock
I am using google mock, and want to mock an inheritance chain like this:
class A
{
// virtual method A1();
}
class B : public A
{
// virtual method B1();
}
class C : public B
{
// virtual ...
1
vote
0answers
105 views
Sanity check/exam/self assessment questions for unit testing, mocking and TDD
I am preparing material to do an in-house training for our developers on unit-testing and TDD. To make it more interactive I want to add slides with questions about the essentials we just learned. ...
1
vote
0answers
432 views
Testing a node.js server in jasmine without calling listen
In attempting to write tests for a node server using jasmine and jasmine-node, my tests stall when I ask the server to .listen(3000). Is there a way to have listen run async so it doesn't stop the ...
1
vote
0answers
161 views
How to test paperclip validation with this relationship?
I want to test the validations for the Post model.
For now, I have this:
class Asset < ActiveRecord::Base
belongs_to :post
has_attached_file :image,
styles: {
thumb: ...
1
vote
0answers
255 views
How to use rspec rails helper methods in a gem — outside a rails install
I have a gem I'm working on that is dependent upon rails to run. Specifically, the gem includes a 'helper' method that uses the 'content_tag' call to build output that will be used in constructing a ...
1
vote
0answers
442 views
Capybara get error `block (2 levels) in <top (required)>'
Spent whole day with the problem.
Very simple test. I want to visit main page and check if it has text "Match".
require 'spec_helper'
describe "Sign in" do
it "should sign in with correct data", ...
1
vote
0answers
183 views
What are some benefits and pitfalls of ODT (Observation Driven Testing)
We just came upon the whitepaper "Observation Driven Testing: Yes, the code is doing what you want. By the way, what else is it doing?", and were intrigued.
However, Google doesn't seem to reveal ...
1
vote
0answers
294 views
TDD with Xml datasource issue
I am running under a situation where one of my TDD with Xml datasource works fine but other throws an error "The unit test adapter failed to connect to the data source or to read the data", "Error ...
1
vote
0answers
149 views
Rails 3 assertions failure message: “Expected block to return true value” not helpful; what gives?
This occurs frequently in my controller and route tests. Example, given the route
match "/about", :to => "about#profile"
And the test
test "/about goes to about/profile" do
assert_generates ...
1
vote
0answers
29 views
ActiveMailer test pass when run through ruby but not when rake test:units
I'm having trouble with an activemailer test I created. When I run the test directly with ruby, the test passes. When I run all the unit tests they fail, because the way the message is encoded ...
0
votes
0answers
19 views
unit tests simultaneously iphone ipad
I'm developing an application for iPhone and iPad on xCode 4.6.2 and I am using TDD method.
My question is how to make unit test simultaneously for iPad and iPhone ?
Currently, I have to run my test ...
0
votes
0answers
12 views
Can zombie test that an element does not exist?
I'm trying to use zombie.js (with mocha) on an express app to make sure some elements don't show on a page. Here's how I try to do this:
var app = require('../app).app, // this is express but you ...
0
votes
0answers
10 views
Is “Data class” really a code smell?
Fowler's book Refactoring lists "Data Class" as a code smell. Yet when unit testing a method, passing in value objects, e.g. data transfer objects, make testing much easier than trying to set up or ...
0
votes
0answers
33 views
How to unit test if function has been called? Dependency injection?
I'm creating a simple RESTful API in PHP for practice. I'm trying to write as testable code as possible. After reading many tutorials and watching a few videos, I still feel at a loss on how to design ...
0
votes
0answers
23 views
lean-and-mean CORBA mock server
We're planning to create a CORBA client on several platforms. For integration testing, it would be useful to be able to have a CORBA service to mock the 'real' thing.
I'm currently looking into what ...
0
votes
0answers
25 views
rspec controller testing - has_many :through :source - RuntimeError: Called id for nil
Please help me. I try to run the following controller test but I cannot figure out why it returns following error:
Failure/Error: get :index, user_id: controller.current_user.id
RuntimeError:
...
0
votes
0answers
28 views
Spork, Vagrant, and Rspec
So, I'm working in a pretty complex development enviornment that is hard to replicate locally on my Mac, so we're using Vagrant boxes and Chef scripts to keep everyone on the same page. What I would ...
0
votes
0answers
22 views
Wait for custom initialization before starting OCUnit tests
I have a test target (OCUNit) that loads our application using the Bundle Loader (formally known as an Application Test). I would like to wait for some custom initialization code to be run before ...
0
votes
0answers
56 views
Selenium RC Timeout
I am new to test unit stuff. My configuration is a windows vista combined with phpunit and selenium rc (selenium-server-standalone-2.32.0.jar).
I have tried loading a testcase file on my prompt ...
0
votes
0answers
105 views
Unit testing with WebAPI odata
I am trying to move from a WebAPI based REST service, to one encompassing the new implimentation of OData. I have the service working correctly, but am at a loss on how create unit tests that will ...
0
votes
0answers
17 views
spork-testunit and guard-test do not post notifications
I just started a new job and am trying to get our company set up for TDD. I've enabled guard and spork, but unfortunately, it seems that notifications do not work for Test::Unit when run using a drb.
...
0
votes
0answers
58 views
JUnit/Jenkins like in cpp/Visual Studio
Consider you have a C++ project in Visual Studio
ANd you want to do Test Driven Developement
What is the best equivalent to java JUnit/Jenkins ?
Currently I think I'll use the tests tools included ...
0
votes
0answers
32 views
Visual Studio Express 2012 for Windows 8: TDD aborts environment
I have installed Visual Studio Express for Windows 8 on my development system. When I add a project for TDD and build the solution, the IDE crashes -- apparently it is unable to find any tests (even ...
0
votes
0answers
54 views
Verify method call with a handle argument on an OCMockito mock
I have an OCMockito mock of a class QuestionBuilder with the method questionsFromJSON:error:. This method accepts a handle (NSError **)error as an argument. How do I verify the method was called?
...
0
votes
0answers
90 views
Test-Driven Development (TDD) using Xamarin and StackMob?
I am interested in using StackMob as my BeAAS on a project using Xamarin to create an Android and IOS version of my mobile app. I am using the StackMob.NET solution from
...
0
votes
0answers
42 views
Mocking internationalisation when creating a Chrome Extension with a regular expression (i18n)
I am in the process of building a Chrome Extension that is likely to grow in size, so I've been practising TDD using QUnit to help me have more confidence as it does get bigger. It has been a really ...
0
votes
0answers
123 views
Which robolectric should I use for testing Fragment?
I tried to make a very simple test for Fragment.
I failed when I tried to use following library.
<dependency>
<groupId>org.robolectric</groupId>
...
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 ...
