0
votes
0answers
23 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
2answers
34 views

Rails MiniTest 'post' method not found

I'm receiving the following error when I try to run my request specs: POST :: /users/:id/authentications request::successful request#test_0001_Adds an authentication record to a user: NoMethodError: ...
0
votes
2answers
19 views

Testing a rails controller method that is designed to change data of a variable

I have the following code in the controller: # guest to user sign up view. Method that prepares a guest to become a user by emptying it's generic #e-mail address. def guest_signup if ...
0
votes
1answer
50 views

How to set up a test for a specific php function

Can anyone please help me set up an unit-test for this php code, ive been trying and haven't found a solution yet. I have recieved this code from the developer-team and Im supposed to create ...
-1
votes
1answer
63 views

Rails Rspec problems: undefined method 'has_link'

I'm at Hartl's tutoral Ch.8 now. I just finished to create sign in/sign out functionality which works fine, but the tests always fail. I can't find the solution. Failures: 1) Authentication signin ...
0
votes
2answers
34 views

Dealing with code duplication in tests

At work I practice Test Driven Development as much as possible. One thing I often end up in though is having to set up a bunch of DTO's and when these have a slightly complex structure this becomes ...
1
vote
1answer
44 views

How can I avoid over-testing with example

I've been trying to start testing my code more, and I thought I would mimic the style of some of the tests that were autogenerated for by me rails scaffolding (I'm using rspec and rails, but my ...
4
votes
1answer
194 views

Test-Driven Development in CakePHP

I'm using CakePHP 2.3 and would like to know how to properly go about building a CakePHP website using test-driven development (TDD). I've read the official documentation on testing, read Mark Story's ...
0
votes
3answers
46 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
45 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 ...
0
votes
1answer
64 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
1answer
88 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 ...
0
votes
2answers
49 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 ...
3
votes
3answers
106 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
36 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
36 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
0answers
57 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
40 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 ), ...
0
votes
1answer
68 views

running same tests for different classes in groovy and spock

I'm currently trying to run the same test cases for 2 different classes but having issues with the setup(), I see similar questions, but haven't seen the solution for groovy testing with Spock, and I ...
0
votes
2answers
76 views

How can I write test driven java class for download manager?

I am developing a Download Manager using with UP Design.In this Elaboration iteration, my main use case:download the file.Here is the Download.java public class Download implements Runnable { // ...
0
votes
1answer
46 views

Jasmine specs generating different random numbers than on execution

I have a Jasmine test that is failing because a random number is being generated and this random value is different for execution and spec. fetch: function(options) { if(typeof options === ...
1
vote
2answers
69 views

How to approach writing developer tests (unit tests, integration tests, etc) for a system?

I have a WCF service which runs and interacts with database, file system and few external web services, then creates the result and Xml Serialize it and returns it finally. I'd like to write tests ...
0
votes
2answers
68 views

Acceptance Test Driven development of a service with several clients

I have a question related to acceptance test driven development (ATDD). My application is developed as a REST Service which might have several clients - web site, mobile, desktop. The ATDD concept ...
0
votes
1answer
49 views

When maintaining a test suite, should all 'errors' eventually become 'failures'?

I'm a user of python unittest, but this crosses all languages. Senario: I have uncovered a defect in 'functionBeingTested'. The defect is that on valid input the code will crash (throw an exception) ...
0
votes
2answers
89 views

Test driven development on iOS for network connections

Struggling to find a good TDD process on iOS for network connection tests. At the moment I am manually testing the functionality by manually switching off / on my Mac network connection. Any ...
0
votes
2answers
56 views

Repeating test cases

My question is if it is ok to repeat the same test assertion or case for every scenario? The scenario here is if I have a function, then this function can be simulated using different scenarios ...
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 ...
1
vote
2answers
83 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 ...
0
votes
1answer
85 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
97 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 ...
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
84 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) ...
0
votes
1answer
202 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
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. ...
2
votes
1answer
91 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 ...
0
votes
0answers
33 views

Testing browser extensions

I'm going to write bunch of browser extensions (the same functionality for each popular browser). I hope, that some of the code will be shared, but I'm not sure about this yet. For sure some of ...
1
vote
1answer
238 views

CasperJS and alert boxes

How do I test that an alert box on my page was called? Can I grab the text of the alert box and evaluate it? My click in CasperJS is done like this: ...
2
votes
2answers
679 views

AngularJS and Rails - e2e testacular testing . How to login user to test angular pages?

Here is the issue I have faced. There is the code I'm working on. Code is mostly typical MVC written in Rails with Haml view files. One part of the app is utilizing AngularJS to do all cool MVC in ...
1
vote
1answer
85 views

using an NUnit category attribute to run certain tests in a dll?

Could anyone tell me how to programmatically decide which tests to run in NUnit? i.e CoreExtensions.Host.InitializeService(); TestPackage testPackage = new TestPackage(pathToSomeDLL); // filter by ...
0
votes
1answer
129 views

Testing rails STI subclasses with rspec

Given a class that inherits from ActiveRecord::Base, lets call it Task, I have two subclasses that specialize some aspects of a task, Activity and Training, using standard Rails single table ...
11
votes
1answer
591 views

How to structure a Haskell project?

I'm currently trying to do a Haskell project using the Test Driven Development methodology. In Java, we can create a nicely structured project containing src and bin folders, then there are main and ...
4
votes
2answers
124 views

Serialized object graphs for arranging unit tests

I have an application where the problem domain is represented by domain objects which are highly interrelated. I have split the domain into a few aggregate root objects which helps impose order on the ...
2
votes
1answer
49 views

How to assert process.stderr output?

I'm building a little command line tool and I hit a problem with testing. How can test that the current process wrote "omg" in stderr? process.stderr.write("omg")
1
vote
3answers
156 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 ...
0
votes
2answers
85 views

Working with test database in rails

I am trying to populate my rails Test database and am running into issues. I have a script which I use to rest, generate and populate my Development database which works without issue. Basically ...
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 2 3 4 5 8