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)

0
votes
1answer
15 views

How to use CoffeeScript specs with Jasmine-Rails

I am running Rails 3.2.13 with Ruby version 2.0.0-p195. I am using the Jasmine-Rails gem version 0.4.5 with the asset pipeline enabled. I would like to write my specs in CoffeeScript but I have not ...
0
votes
1answer
7 views

Django - Unit Testing an AdminForm

I am very new to unit testing and am probably doing something wrong, but when I simulate a post to update a model via the admin backend it seems like my save_model method in my AdminForm isn't being ...
0
votes
1answer
36 views

Factorygirl error using callback: Wrong Number of Arguments

Hello and thanks for reading. Here's my factory: FactoryGirl.define do factory :venue do sequence(:name) { |n| "ExampleVenue#{n}" } factory :venue_with_gig do after_create do |venue| ...
3
votes
1answer
2k views

Add cookie to Request.Cookies collection

I am trying to create a wrapper class to process content of HttpContext. I am creating a cookie but unable to add to HttpContext.Request or Response cookies collection. I am using Moq. Also I am ...
25
votes
11answers
1k views

Can you pair program remotely?

We have a team of about 7 engineers, whom I supervise. We do not have a formal office where we all work. Instead, a handful are located outside of our city, while the rest of us are scattered around ...
1
vote
1answer
109 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. ...
0
votes
1answer
26 views

Dealing with UITableView's indexPathsForSelectedRows

I'm not sure how I can implement that my mock UITableView object answers correctly for indexPathsForSelectedRows. In my App the user can (in editing state) select cells in a table view, which ...
0
votes
0answers
21 views

TDD return object is not updating

Please see the code below: which are not returning correct images order from what I expected. Basically, I move image5 to image4 position. So image5's order number should be 4th and image4's order ...
6
votes
4answers
2k views

Unit Testing an EJB

I'm looking for a way to apply TDD to Session Beans. can anyone provide advices and links on how to unit test them ? how to use JUnit to do so ? P.S : I'm new to Test Driven Development and ...
0
votes
2answers
58 views

Code Coverage Tools and TDD

I've recently been evaluating DotCover by JetBrains and it's led me to a interesting question. When following TDD: I'll write a test against my desired ideal interface. Red Create the simplest ...
1
vote
1answer
40 views

should i extract some of my unit test code?

I'm just looking into tdd with mvc 4. I have an orderscontroller which takes a unit of work interface in its constructor: public OrdersController(IUnitOfWork db) { this.db = db; } // // ...
0
votes
1answer
32 views

meteorjs: laika client and server test timout

I'm trying out laika test framework for meteor. The second example from the homepage uses observe() and I think it is not observing correctly. suite('Posts', function() { test('using both client ...
0
votes
1answer
36 views

How to get the test outcome programmatically in boost

Is it possible to determine the outcome of a boost test? e.g. if boost support if statements, if( BOOST_CHECK_SMALL(Fred,0.001)) { ... printValuesInTest("This value failed:",Fred); } If ...
34
votes
14answers
3k views

Random data in Unit Tests?

I have a coworker who writes unit tests for objects which fill their fields with random data. His reason is that it gives a wider range of testing, since it will test a lot of different values, ...
0
votes
3answers
41 views

How to write test of async methods in TDD?

I need to write unit test of an asynchronous method. In my case I have client(simply tcp client). It send message to server(tcp server). Server takes this message asynchronously. I want to get the ...
1
vote
4answers
182 views

Testing REST service in java

So, here's the thing. There's a REST service I'm using that is supposed to be tested and I can't access the code. I've made some kind of library in java so I can interact with that service, but I ...
5
votes
3answers
398 views

Is Test Driven Development the same as Test Driven Design?

I'm starting to learn about Test Driven Development. I've read quite a few articles that talk about TDD. Some refer to it as Test Driven Development. Others call it Test Driven Design. Are they the ...
0
votes
1answer
128 views

DRY rspec syntax for controller specs

Typically in my controller specs I'll do something like this: describe MyController do describe 'POST #create' do let!(:my_model) { initialize_something_here } before :each do post ...
-1
votes
1answer
23 views

Moq callback method with object parameter

In my scenario I want to mock 1 of the service framework method which takes object parameter and reset it with strongly typed class object. public void Updatedata(object pvm) { var vm = ...
-1
votes
3answers
44 views

Java: To what extent should we encapsulate our methods and classes?

To what extent should we encapsulate our methods and classes? for example, besides getter and setter, what else non-static methods should be declared as public? And if we declared too many private ...
3
votes
2answers
81 views

Autofixture - Two constructor parameters of the same type, but different values (SutFactory)

Using autofixture as a SutFactory, I can see that if I register or freeze a value for a type, that value will then be used for all subsequent usages of that type. However, if I have a class with two ...
3
votes
2answers
112 views

Composer suggested approach for internal packages

Some background first Our company, a small startup with only four developers, is starting the refactoring of our products into reusable modules to simplify the development process, increase ...
592
votes
21answers
124k views

Looking for a better JavaScript unit test tool [closed]

Let's consider the state of JavaScript unit tests and testing tools. JsUnit We already use it for some of our js code. Pros can be invoked from an ant build file launches browser to run the tests ...
0
votes
0answers
18 views

IXRepository and test problems

Recently had a doubt about how and where to test repository methods. Let the following situation: I have an interface IRepository like this: public interface IRepository<T> where T: class, ...
2
votes
3answers
183 views

Dependency injection in TypeScript

I'm looking into the possibilities to do TDD with TypeScript. If I write my tests in TypeScript, is it possible to make the import statements return mocks for my class under test? Or is the only ...
2
votes
2answers
1k views

GUI testing framework for JavaFX 2

I'm currently reading the book Growing Object-Oriented Software Guided by Tests which gives a decent introduction into test driven development. One drawback is that the code developed through the ...
1
vote
2answers
461 views

Stubbing Ajax requests in Cucumber / Capybara / Selenium?

In my Rails 3.2 project, I send an occasional http request to http://jsonip.com from Javascript. But when running Cucumber with the @javascript tag, the request gets sent very frequently. This is ...
35
votes
7answers
8k views

Developing UI in JavaScript using TDD Principles

I've had a lot of trouble trying to come up with the best way to properly follow TDD principles while developing UI in JavaScript. What's the best way to go about this? Is it best to separate the ...
2
votes
6answers
565 views

Looking for a Javascript unit testing framework

What do you recommend as the best and most documented Unit Test Framework for Javascript?
3
votes
5answers
535 views

How to practice TDD on a web app?

I am a newcomer to TDD. What are some of the techniques you guys use on applying TDD to the development of a webapp? I am looking for advice for a newcomer. Practical examples or "war stories" ...
2
votes
1answer
746 views

How to TDD for CouchDB with CouchApp?

Recently I've discovered CouchDB. I want to use CouchApp to build a flash games site. It looks like a perfect fit 'cause this kind of a site is totally document based with a bit of binary attachments. ...
33
votes
13answers
3k views

How to run unit-tests in all browsers?

I've never used Selenium but I guess it's for simulating user interaction in all browsers. That's like integration tests. But how do you test your js libraries/frameworks (unit testing) on all the ...
0
votes
4answers
39 views

How to test if a function grows logarithmically?

I have function in my model that counts user's score: def score (MULTIPLER * Math::log10(bets.count * summary_value ** accuracy + 1)).floor end My point is to test that it grows logarithmically?
1
vote
3answers
142 views

Javascript Module pattern - how to reveal all methods?

I have module pattern done like this: var A = (function(x) { var methodA = function() { ... } var methodB = function() { ... } var methodC = function() { ... } ... ... return { ...
9
votes
11answers
2k views

How to unit test private methods in BDD / TDD?

I am trying to program according to Behavior Driven Development, which states that no line of code should be written without writing failing unit test first. My question is, how to use BDD with ...
4
votes
3answers
75 views

Writing junits in Test Driven Development before writing actual code?

Folks it is always said in TDD that we should write junits even before we write the actual code. Somehow I am not able to understand this in right spirit. I hope what it means is that you just ...
2
votes
2answers
109 views

Railstutorial.org Validating presence tests

I've been working through the tutorials at railstutorial.org, and I was a little stumped by the author's code for section -- 6.2.1 Validating presence. In the user model, the tutorial adds validates ...
0
votes
1answer
191 views

How to implement test driven development in spring 3 mvc?

can you anyone plz tell me , what are the basic basic & esential steps involved in TDD for spring 3 MVC. how to iterate over development & testing life cycle ? how to distinguish each ...
5
votes
1answer
81 views

How to unit test a timer class (adapter pattern)?

I'm currently abstracting the concept of timers so that my classes that need one can use mock timers in tests or different implementations in operative mode (e.g. threadpool timers, thread-affine ...
6
votes
5answers
2k views

How do I mock/fake the session object in ASP.Net Web forms?

Is there a way to mock/fake the session object in ASP.Net Web forms when creating unit tests? I am currenclty storing user details in a session variable which is accessed by my business logic. When ...
0
votes
2answers
54 views

Cucumber-like testing for my API

I have been writing my Rails application with Cucumber in TDD mode: Tests first, then the code. Now my application needs an API. What I like about cucumber is, that I can specify my tests in plain ...
0
votes
1answer
49 views

Applying TDD/unit testing for config transforms?

Does anyone know of any techniques or frameworks that can be applied to effectively unit test config transforms, particularly on a build server? For example, if I add a new connection string to the ...
2
votes
2answers
386 views

Is it possible to throw a MessageQueueException?

I am using a mock object in RhinoMocks to represent a class that makes calls to MessageQueue.GetPublicQueues. I want to simulate the exception thrown when message queueing is operating in workgroup ...
0
votes
1answer
7 views

can't test default role with rspec

I'm truing to test whether user have default role of 'user' after creation. For roles, i have cancan and devise on authentication. In my user model I have this snipped after_create :default_role ...
-4
votes
2answers
73 views

make a table for [closed]

math.sqrt(X). the following is the table for it math.sqrt(X). the following is the table for it public class SqRoots { static final int N = 10; // How many square roots to compute. ...
0
votes
1answer
30 views

RSpec and testing Devise's mailer

I had some issues with sending confirmation emails in Devise. That's why I would like to write tests for this functionality. How could I do this, when I don't create my own mailers? EDIT I decided, ...
1
vote
1answer
318 views

Recursive SamePropertyValuesAs matcher in hamcrest

I am looking for a hamcrest matcher that behaves the same way as SamePropertyValuesAs but with the added twist that if a property is not a primitive, one of the standard Java classes (string, integer ...
0
votes
1answer
53 views

Programming a web API with test driven development [closed]

I'm creating a web API in Python which communicates with some other web API's (Facebook, twitter, etc) en a other web API which is programmed at the same time as my API. Since I like to use test ...
1
vote
0answers
41 views

Configure AutoMapper to return Mock in test layer

In my app, all domain classes follow the standardization: All implement the interface IEntity Id properties are protected* The properties of type IList are protected and initialized in the ...
1
vote
1answer
44 views

Should I avoid Di when classes are testable with black box testing

I'm implementing something similar to nand2tetris project except I write all my code in java not using HDL and I'm writing tests on my own. For problem ilustration: I have implemented nand logic gate ...

1 2 3 4 5 58