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.

learn more… | top users | synonyms (2)

1
vote
1answer
70 views

Chai.js: Object contains/includes

Chai has an include method. I want to test to see if an object contains another object. For example: var origin = { name: "John", otherObj: { title: "Example" } } I want to use Chai to ...
1
vote
1answer
68 views

How to organize rails integration/feature specs

For the controllers, I tested each action like: describe PostsController do describe "GET #new" describe "GET #edit" describe "DELETE #destroy" ... How do I organize my integration/feature ...
0
votes
1answer
132 views

Can phpunit use multiple data provider

One question in short: can phpunit use multiple data provider when running test? For example, I have a method called getById, and I need to run both successful and unsuccessful testcases for it. The ...
1
vote
1answer
101 views

cannot find circular reference reported by autofixture

I'm trying to validate my infrastructure. AutoFixture says I have a circular reference in my code and when I omit the behavior, it cannot cast the specimen to my object type. Charting the solution ...
0
votes
1answer
126 views

How to call Google Tests from another main function in C++

I am trying to create a stack and test it using Google tests in an experiment with the C++ Google Test framework. I have set up the structure so I have a stack.h and stack.cpp for the implementation ...
1
vote
1answer
90 views

How to test a legacy application (and adopt Test Driven Development) without introducing risk?

I have been asked to bring an old java based application up to date and inline with more current apps I have worked on. One of the things we would like to introduce is Test driven Dev for any new ...
0
votes
1answer
82 views

Jasmine test on mock data or on real-life systems and data sources?

I have a basic question about using Jasmine BDD. Are tests meant to be simulation done on "mock" data? I want to make a test version of an existing script, which gets data from scroll events on a web ...
2
votes
1answer
48 views

Ideas for non-technical exercises to reinforce the concept of test-driven development?

I'm running a course to help students understand some important technology concepts, but the students do not know how to code (nor is this the point of the course). For many concepts / practices in ...
2
votes
1answer
262 views

MVC4 TDD - System.ArgumentNullException: Value cannot be null.

I'm new to mvc4 and also TDD. When I try running this test it fails, and I have no idea why. I have tried so many things I'm starting to run around in circles. // GET api/User/5 [HttpGet] ...
0
votes
1answer
72 views

UnitTest autorunner on Intellij IDEA for java

I try to use plugin 'fireworks' http://plugins.jetbrains.com/plugin?pr=idea&pluginId=1106 for autrorunning unittests for java code. but it doesn't work. Is any alternative for it? Is anybody ...
0
votes
1answer
51 views

Knowing to interpret the phpunit tests

I´m trying to configure the fixtures and phpunit system is returned the next message '.E', but I don´t know how interpret it: C:\kyopol\Apache 2.22.22\htdocs\demo\protected\tests>phpunit ...
1
vote
2answers
87 views

Test Driven Development with Liferay

I am new to Liferay. Can anyone help guide me as to how to follow Test Driven Development with liferay. Can anyone provide guidelines how to write tests and execute them using eclispe IDE for ...
2
votes
3answers
65 views

Unit testing different class hierarchies

What would be the best approach to make unit tests that consider different class hierarchies, like: I have a base class Car and another base class Animal. Car have the derived classes VolksWagen and ...
2
votes
2answers
62 views

How simulate system users for testing file system interactions in ruby?

Im am quite happy to have found FakeFS to be able to fake a file system sandbox in which my tests can mess around. Now I want to be able to test test FileUtils.chown and chmod operations and therefor ...
0
votes
0answers
42 views

how to test that the correct NNTP article was fetched

I've modified gnu.mail.providers.nntp.NNTPFolder a bit to use generics and to expose the articleCache and groupResponse fields with getters, even if it did take a bit of time to determine what to ...
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 ...
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
1answer
78 views

Which C++ IDE supports a quick TDD work flow and the Google or Boost Test framework? [closed]

As of now, here's what I do(I use Visual Studio): Create a Test Project Add some tests Add code. Compile and Run When a test fails, Write code to make it pass Repeat the previous 3 steps until I ...
0
votes
1answer
86 views

Is there a point in using Unit Test, Rspec, Cucumber and Capybara?

I am beginning at Ruby and i read about different test methods/frameworks: unit test (MiniTest::unit now with the latest Ruby version), Rspec, Cucumber and Capybara. But I don't fully grasp what's the ...
1
vote
2answers
100 views

Where can I find examples of use cases for test-driven development? [closed]

I think the title is fairly straightforward: I've heard a lot about test-driven development and use cases, and while I understand it in theory, I would really like to see some examples of how it's put ...
0
votes
2answers
130 views

Unit testing void methods w/ dependencies that change state with subsequent operation

I am having trouble unit testing a void method and mocking a dependency when that dependency changes the state of the passed reference. I understand that side-effects can be observed on a void method ...
0
votes
1answer
38 views

JavaScript TDD with regards to code coverage and mocking

I am looking for advice on TDD with JavaScript. I'm using VS 2010\2012 with Qunit and would like to know if it is best practice to: use a mocking framework like Qmock or other? use a code coverage ...
2
votes
2answers
70 views

Using TDD approach and avoiding Java static methods

I just got some feedback about a job application Java coding exercise. They did not like the solution and two problems where stated in the feedback (which I'm very grateful for as it's very rare ...
1
vote
1answer
49 views

PHPUnit - breaking code into testable chunks

I read somewhere that it's a good idea to break methods down into smaller, testable functions so that the smaller methods can be tested. But I'm confused on how to test the method that calls the ...
5
votes
2answers
113 views

Reducing Coupling Between Test Cases

I am trying to learn more about JUnit and TDD, but I am running into some issues with coupling between test cases. When I am writing a test case for a particular data type's API, say a ...
0
votes
1answer
86 views

Rspec stub method calls on records

My test case is below: petition1 = Petition.create petition2 = Petition.create petition1.should_receive(:test_method).with(7).and_return(50.0) ...
-2
votes
1answer
61 views

How to test these ActiveRecord models? [closed]

I'm trying to learn to write tests in Ruby (following the testing culture the language has). However, I'm quite confused and that's why I'm looking for an example here. Here is my model user.rb: ...
0
votes
1answer
207 views

Mocha test fails when watching (“after all”: done() called multiple times)

I have a Mocha test that passes fine on first run, but when changes are made and Mocha re-runs the test for a second time (using the --watch flag), it fails. My test: var mongoose = ...
0
votes
1answer
57 views

How to mock a class which calls an invokation block?

I'm digging myself into TDD and startet using SenTestingKit along with OCMock. I'm using FMDB as a wrapper for my SQLite Database. I can't get my head around how to mock the DatabaseQueue class, so ...
3
votes
2answers
131 views

c# TDD first time in ServiceBase

I'm trying to implement Test-driven development for the first time. My project is a c# in dotnet 3.5. I'm have read the book Professional Test Driven Development in c# and now i want to test my ...
0
votes
1answer
78 views

KO Assertions in testing CRUD, from Phpunit with Yii

I´m following the manual 'Agile Web Application Develpment with Yii1.1 and PHP5', and I don´t know, why do the test CRUD is failed, It was created correctly 'Entity AR class' from Gii after tested ...
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 ...
0
votes
0answers
24 views

Rails Steak helpers not accessible

I´ve just started using Steak. But whenever i call a helper method in a scenario, i´m getting a NameError: undefined local variable or method. No matter if it´s inside NavigationHelpers or ...
0
votes
0answers
35 views

How do I reconcile TDD when the production environment differs significantly?

I'm a rails developer. I test locally and deploy to Heroku. Often I have a stituation that can't really be tested locally. For example the HireFire gem that dynamically spins up workers when neeed. ...
0
votes
1answer
80 views

Rspec testing instance method which require other methods return (stubbing?)

I want those already methods to be tested, but everything I try, doesn't seem to fit with best practices nor do it work. May be somebody can support me with this? CODE To be tested def ...
0
votes
1answer
63 views

Can I test a javascript file inside my public folder with jasminerice and rails 3.2.8?

I am having a little bit of trouble testing a javascript file inside my rails application. I have this file inside my public directory because I want to serve it statically. I am currently using ...
0
votes
1answer
39 views

Why does Capybara throw an error when the page works?

I have a very simple capybara script for a custom sign-up form using devise: scenario "allow me to register and should take me to the new partner page" do visit '/registrations/become_partner' ...
0
votes
1answer
134 views

session hash does not persist on rspec tests

In my people_controller_spec.rb I have before(:each) do @office = FactoryGirl.create(:office) @organization = FactoryGirl.create(:organization) @user = FactoryGirl.create(:user, ...
3
votes
1answer
92 views

Understanding stubs, fakes and mocks.

I have just started to read Professional Test Driven Development with C#: Developing Real World Applications with TDD I have a hard time understanding stubs, fakes and mocks. From what I understand ...
4
votes
2answers
77 views

Should I write tests before they will compile? [closed]

I've been trying to follow a loose TDD workflow for one of my open source projects. It's an API for other programmers to use. As such, one key aspect as well as making the API "work" is also ...
0
votes
1answer
52 views

Verify using Moq that only these two method calls where called, and nothing else

I am using Moq for verifications and unit-testing. I would like to verify that say a method 'Add' was called with parameter 1, and parameter 5, and not called for any other value except for those. ...
2
votes
1answer
94 views

Testing Approach for XDocument.Load() and XDocument.Save()

I am working with XDocument within an MVC4 Web API application in Visual Studio 2010 and am unsure about the testing strategy. Most of my unit tests make use of an in memory XDocument, which works ...
1
vote
2answers
155 views

TDD: Unit Testing Asynchronous Calls

guys: I'm working on an application, and building it with unit testing. However, I'm now in a situation where I need to test asynchronous calls. For example, - ...
1
vote
1answer
75 views

Rails model fails format validation, regex

I'm setting up a model for recordings with the following constraints class Recording < ActiveRecord::Base attr_accessible :agent_id, :confirmation, :filepath, :phone, :call_queue_id, :date ...
0
votes
1answer
148 views

Sql Lite Error while running Fixtures : Unable to find the requested .Net Framework Data Provider. It may not be installed

Can anybody please help to resolve this issue.. I tried saveral things after googling but yet no luck... This error occurs while running fixtures in my project. NHibernate.HibernateException : ...
0
votes
1answer
25 views

How can I write a unit test against a WebPartBase class and mock out the controls?

I have a bunch of WebPartBase classes that I'm trying to invoke a method on. Some of the methods call controls on the UI. I want to stub out those controls somehow so that an exception doesn't get ...
0
votes
0answers
17 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 ...
1
vote
1answer
47 views

TDD using namespacing (PHP) - Class not found

I'm implementing some classes and I always end up with the following error: PHP Fatal error: Class 'Foo\Bar\Filter' not found in /blabla/filterTest.php on line 10 I have a test like this ...

1 3 4 5 6 7 58