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
3answers
50 views

Unit Testing. Before or After creating interface?

In my recent project, my team members and I gathered up, went through the requirements, and created interfaces(with method declarations, but not implementations) together that we all agreed on. Then, ...
0
votes
1answer
39 views

unit testing extended class base functionality

I have an abstract Record class that represents records in the database. Each record must have at least the following columns: id, created, updated. I then extend the Record class to represent rows ...
0
votes
1answer
121 views

Why is the xUnit Runner not finding my tests

I'm hoping this is a duplicate and will be happy to close it if someone can dig up the original but I can't find anything googleable so want to add this self-answered question so I can refer people to ...
3
votes
2answers
529 views

How can I use HTML fixtures with Karma test runner using Qunit?

I'm playing with Karma test runner (http://karma-runner.github.io/0.8/index.html) using qunit (http://qunitjs.com). I succesfully created and ran simple tests (100% JavaScript), but now I'm trying to ...
0
votes
0answers
72 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
2answers
81 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 ...
0
votes
1answer
47 views

How to test a skinny controller without retesting the fat model?

Before I start, I'm using rails with rspec, shoulda-matchers, and factorygirl to ease testing, so if those libraries contain something helpful to solve the problem below, please let me know. I was ...
0
votes
1answer
48 views

Should I unit test validation code? It seems impractical

I'm learning test driven development and I want to know what I should I do when it comes to test driving validation. Should I create unit tests that test every possible combination of validation ...
1
vote
3answers
114 views

Rspec test failing miserably

So I've seen several questions on here somewhat similar to mine, but not quite close enough to help me figure out what my issue is...so any help on what i'm doing wrong would be appreciated: (I'm ...
0
votes
1answer
62 views

What are some examples of some difficult Unit Tests, that were either impossible or solved creatively? [closed]

I am in the process of writing Unit tests for our core library. One of the classes measures workload on the computer performance over time (as an average), applies some weights and can spit out a ...
1
vote
1answer
40 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?
4
votes
1answer
92 views

Proper tearDown Hibernate testing with H2

Currently I am using the below after every test I have in my test suite. However it makes it very slow because H2 has to reload the application context after every test. Is there a quicker way to ...
2
votes
1answer
107 views

How to follow test first approach with Equinox/OSGi - Tycho - Eclipse RCP environment

I joined a project where the development is carried on Eclipse RCP platform with the use of Equinox/OSGi, Tycho. I am slowly getting familiar with classpath/classloading mechanism of OSGi, how tycho, ...
0
votes
1answer
58 views

Rspec/Rails and testing validates_uniquess_of with scope

Here is my test code: require 'spec_helper' describe Classroom, focus: true do let(:user) { build_stubbed(:user) } describe "associations" do it { should belong_to(:user) } end ...
1
vote
2answers
69 views

Writing tests that do not fail first

TDD best practices say that a fresh test should fail. However, I think it is possible that a test is necessary, although it doesn't fail when it has just been written. Sample workflow: Write test ...
3
votes
1answer
70 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 ...
0
votes
1answer
43 views

what category of code coverage are units tests done in TDD

I am a bit confused with the various types of code coverage: statement coverage, branch coverage, p-uses coverage, c-uses coverage, statement coverage, line coverage..... I am i interested in the ...
0
votes
1answer
27 views

How do I set a variable in my rspec test so that it can be used by the controller for a query?

I have a variable in my sessions controller. session[:facebook_profile_id] = @user_info['id'] @user_info['id'] is an int. Example: 123 I then use that session variable in my main controller to get ...
0
votes
2answers
137 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
64 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 ...
1
vote
2answers
34 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 ...
0
votes
1answer
60 views

Django 1.5.1 “'STDOUT_LINE' is not defined” when running tests

When I run tests in Django for my applications I have the following exception .......NameError: global name 'STDOUT_LINE' is not defined There're only 9 test methods in the test case. What may ...
0
votes
1answer
66 views

Test driven development - when/what to test?

I am trying to get started with TDD but right away I am unsure of when and what I should be testing. The first two tasks in a new project I'm working on are as follows. 1) Receive some JSON formatted ...
1
vote
0answers
33 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(); ...
0
votes
1answer
61 views

Rspec and testing instance methods

Here is my rspec file: require 'spec_helper' describe Classroom, focus: true do describe "associations" do it { should belong_to(:user) } end describe "validations" do it { should ...
1
vote
1answer
101 views

Creating test data: domain builder

I want to create test data for my tests with underlying in-memory database. Common approach is to create some test_data.sql file and create test objects with inserts. And then reference these objects ...
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 ...
0
votes
1answer
221 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 ...
1
vote
1answer
32 views

How to check if function throw an error in DOH?

I trying to check if function throw an error, and make this: define([ 'doh/runner', 'app/Obj' ], function( doh, Obj ){ doh.register('Test Obj exception', [ ...
0
votes
0answers
140 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 ...
2
votes
2answers
122 views

Should an Aggregate Root Implement an Interface in Domain-Driven Design

I'm working on a project using both domain-driven design and test-driven development. While reading through the DDD book by Evans, I noticed that he did not define interfaces for aggregate roots in ...
0
votes
1answer
31 views

PHPUnit locking objects

I had a question about PHPUnit and how it seems to lock objects and if I am testing in an incorrect fashion or if it is just something on PHPUnit. Here is my test code $t = ...
0
votes
2answers
53 views

Is there a better way to test this Ruby class with RSpec?

I'm extracting a subset of fields from a full JSON dataset having a JSON fixture. The better way I could think of is the following : require "spec_helper" # API ref.: GET /repos/:owner/:repo # ...
0
votes
1answer
52 views

How do I get this rspec test to pass?

I can't for the life of me figure out why these tests are failing. When a user puts in their email/password and hits the Log in button, they are redirected to their profile page which puts their ...
0
votes
1answer
363 views

Node.js: having trouble with mocha and expect to.throwError

I'm trying to build a simple login module for Node. I'm trying to do it in a TDD way, but I'm still new to it, so any tips or resources that will help me understand it better would be great. My ...
3
votes
3answers
191 views

How to write testable controllers with private methods in AngularJs?

Alright, so I have been stumbling upon some issue for a long time and I would like to hear an opinion from the rest of community. First, let's look at some abstract controller. function Ctrl($scope, ...
1
vote
1answer
42 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
69 views

OCMockito verify with any arguments

I'm trying to verify that a function on a mock object is NOT called at all with ANY parameters. The function on the object I'm mocking is... - (void)registerUserWithUsername:(NSString*)username ...
0
votes
0answers
19 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
1answer
74 views

Testing the parameters send to a Mock Protocol with OCMockito

Good day, I'm using OCHamcrest and OCMockito to start my path using TDD methodology, they really cool tools but there's one thing that it seems that I don't understand about mocking a protocol and try ...
1
vote
1answer
31 views

RhinoMocks expectation with dynamic parameter

Is there anyway to mock an method that takes a dynamic parameter? I want to set an expectation like this: _hasher.Expect(h => h.ComputeHash(Arg<dynamic>.Matches(o=> o.PropertyA == ...
1
vote
3answers
56 views

What's the best practice in organizing test methods that cover steps of a behavior?

I have a FileExtractor class which a Start method which does some steps. I've created a test class called "WhenExtractingInvalidFile.cs" within my folder called "FileExtractorTests" and added some ...
1
vote
1answer
53 views

using memoize in groovy

I am currently practicing test driven development in groovy using spock. I have 1 set of tests where 3 different implementations doing the same thing: iterative, recursive, and memoized. so I have ...
0
votes
1answer
38 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 ...
0
votes
1answer
26 views

How to run full directories in phpunit?

I have somewhat complex dir structure for my tests. En example: unitests unitests/moduleA unitests/moduleA/t1.php unitests/moduleA/t2.php unitests/moduleA/t3.php unitests/moduleB ...
3
votes
3answers
119 views

Using Moq, How to setup a method call with an input parameter as an object with expected property values?

Using Moq, How to setup a method call with an input parameter as an object with expected property values? var storageManager = new Mock<IStorageManager>(); storageManager.Setup(e => ...
0
votes
0answers
75 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 ...
1
vote
1answer
23 views

Tests relying on tables being present

Is it acceptable for a unit test to assume a database table is present? For instance if one has a UserStore class and associated UserStoreTest test class. Suppose this class is part of a system that ...
1
vote
2answers
42 views

Unit testing database interactors

I have a database interaction component which has, amongst other things, a Writer and a Reader class. The writer class has write methods such as insertEntity( Entity ) and updateEntity( Entity ), ...
1
vote
1answer
60 views

How does Mocha know that done was specified?

If I write an asynchronous test using Mocha, all I need to do is to specify the done parameter on the test function: test('foo', function (done) {...}); My question is: How does Mocha know whether ...

1 2 3 4 5 58