Unit testing is a method by which individual units of source code, sets of one or more computer program modules together with associated control data, usage procedures, and operating procedures, are tested to determine if they are fit for use.
1
vote
1answer
31 views
Handling several event listeners
Update: here's a fiddle of my problem. The tests pass once, and fail the next time:
http://jsfiddle.net/samselikoff/hhk6u/4/
The problem is departments has events.on("userSet:company"), so both ...
2
votes
1answer
44 views
C++ Testing Framework Recommendations
I am new to unit testing and trying to set up a unit testing framework for a legacy C++ project. There are several older questions on SO about unit testing frameworks for C++ but they seem to be at ...
0
votes
1answer
15 views
Select all matching elements in PHPUnit Selenium 2 test case
It is simple to select an element by specifying its class, in PHPUnit Selenium 2 test case:
$element = $this->byClassName("my_class");
However, even if there are two items of my_class, the ...
0
votes
1answer
47 views
Junit/Mockito - wait for method execution
In my application I use observer pattern for some operations and I want to test them in unit tests. The problem is that I don't know how can I test observers using junit/mockito/something else. Any ...
0
votes
2answers
38 views
Mockito method returns null
I looked in the forum but couldn't find why this would happen
I have
public class AImpl implements A{
@Autowired
B bImpl;
protected void doSomething(){
String s = "test";
...
2
votes
1answer
47 views
Code coverage with mocha
I am using mocha for testing my nodejs application. I am not able to figure out how to use its code coverage feature. I tried googling it but din't find any proper tutorial. Please help.
0
votes
5answers
78 views
Bash shell: How to test for failure of mkdir?
I'm writing a Bash shell script and want to do robust error checking. The exit status code for mv to make it fail is easy to test, by just trying to move a file you know doesn't exist.
I have to also ...
0
votes
1answer
31 views
Loading managed assemblies in a unit test project seems to slow Visual Studio 2010 down
I am loading multiple managed assemblies in a unit test. The assemblies are from within the solution and not third party, not that it matters. I notice that Visual Studio tends to increase memory ...
0
votes
1answer
33 views
MS Visual Studio Unit Tests take forever to close - even if there's no code in the test
Why would this be happening? I have a no code in my test:
[TestClass]
public class ApiClientTest
{
[TestMethod]
public void ApiTestSampleUseCase()
{
TestCleanup();
}
...
0
votes
1answer
136 views
Testing modular AngularJS w/ Jasmine & Karma
Struggling to get unit testing set up in Jasmine/Karma. I have a controller with a service dependency, and that service has another service dependency. I am not organizing my modules by type ...
3
votes
1answer
62 views
RobolectricContext missing for gradle based project
with v2.0 of robolectric and a gradle based project I am facing the problem of a missing RobolectricContext for the runner. It works with
testCompile group: 'org.robolectric', name: 'robolectric', ...
1
vote
1answer
18 views
Nose test single setup function called once
How do I create a single setup function all my nose test cases that is only called once during initialization? I have a global configuration that only needs to be set once and I feel that adding the ...
0
votes
1answer
16 views
Unit tests not seeing new version of managed object model
I've created a new version of my managed object model (new xcdatamodel file), updated the xcdatamodeld to have the new version as "current", and added a attribute (hasStartWithFlow) to an entity ...
0
votes
1answer
25 views
pycharm and unittesting - structuring project
I am using pycharm at one of my university projects and I wanted to integrated it with unittest module, but I have a problem with structuring my project
Part of this project involves generating ...
6
votes
2answers
90 views
Fake the Google Maps objects structure with JavaScript for Unit Tests
The Google Maps API objects are used like this: google.maps."Constructor" it seems.
I want to fake the calls listed below...
//var map = new google.maps.Map(value);
//var fireStationBound = new ...
0
votes
1answer
27 views
Qt Creator Unit Test Project
In Qt Creator, when I create a new Unit Test project it will not build successfully if the full path to the project contains a space.
I've tracked the bug down to the makefile produced by qmake. The ...
1
vote
3answers
68 views
How to use Mockito for testing sendEmail() method without sending email?
I need your help with using Mockito for unit tests.
My project have only DAOs and Services, so it's web project.
I have interface EmailDao and it's implementation EmailDaoImpl class. Now I have ...
0
votes
2answers
37 views
Two public method calls a private method
I heard some one said that it's better to write Junit test for a private method via a public method. But in this case, I should test private method to avoid the duplicated code. Is it good approach?
0
votes
0answers
73 views
Laravel Controller Layout testing
I'm trying to include unit-testing in a new Laravel app I'm building.
Right now I'm want to test my OrderController. The index method of this controller looks like this:
public function index()
{
...
0
votes
1answer
23 views
Simple.Data and unit testing the business layer
I'm thinking of using the Simple.Data package (https://github.com/markrendle/Simple.Data) and thought of an interesting issue in terms of implementation.
Simple.Data appears to be designed abstract ...
0
votes
2answers
50 views
Using Mockito for unit-testing a presenter with a passive view
The problem
A presenter that "manages" a passive view subscribes to events that occur in that view (e.g. button click), and does not directly expose the methods that handle those events as public ...
0
votes
1answer
44 views
Can you easily take a C++ project back and forth between Qt Creator and Eclipse?
I have an application I've been wanting to build for almost a year now. I studied programming in high school and college (BS IT) and find it relatively easy. The hard part for me has been the rest of ...
0
votes
0answers
14 views
Maven: How to setup a bean once and reuse it among submodules
I am doing something that doesn't seem strange, but I couldn't find any information about it anywhere. I have a Maven project with submodules A and B. In order to run the tests (TestNG) I need to ...
0
votes
1answer
14 views
Unit Testing Approach for an Algorithm in Rails model
I am yet to jump into the TDD/BDD group. Trying to make the mental switch. For now I have been writing the business logic before my tests.
In one of my Rails model, I have a complex algorithm ...
1
vote
1answer
30 views
Can Mockito return an argument to a method AFTER calling a method on it?
I'm new to Mockito and trying to write tests for some legacy code before I start a large refactoring and have come across the following pattern which I expect to see regularly in the code base:
...
...
1
vote
1answer
41 views
Unit Testing Postgres Database with Maven
First let me explain what I am doing:
Creating a Java project in Eclipse (JUNO) to unit test SQL for a Postgres database.
Using Maven2 as the build tool. I have DBUnit, and SQL maven plugins.
The ...
0
votes
0answers
14 views
Signed Vs unsigned library with maven
We are refactoring an old project to split the packages into smaller libraries. At the end, the libraries are loaded into a webstart application, so we need to sign the jars we are using.
All this ...
1
vote
0answers
58 views
Python Unittest bug?
In this simple unittest, only one test case can be run. When I comment out either test case, the remaining test runs, passes, and the module terminates normally. When I allow both test cases to be ...
0
votes
1answer
63 views
How to test classes depending on code only defined in header files?
I'm getting started with unit testing in C++ and I'm trying to figure out the best practices. Today however I sort of hit a brick wall when writing code that uses boost interprocess, specifically ...
1
vote
0answers
15 views
Stub setter in Rhino Mock partial mock
I'm following the accepted answer in this question but I'm getting a NullReferenceException.
What I need is having a partial mock stub a property (both getter and setter) to behave like a stub (as a ...
0
votes
1answer
44 views
TfsBuild does not run unit tests
I'm using tfs 2010 and I want to create a tfsbuild defintion that runs unit tests.
I created unit tests and it works perfectly on my local machine.
I created a build definition, enabled tests, ...
0
votes
1answer
49 views
How do I use OpenCover and ReportGenerator to view Unit Test Coverage Results?
I'm a noob to using both OpenCover and ReportGenerator and I'm struggling a bit in understanding how to get them working. I'm using VS.NET 2012 'Professional' which means I don't have access to the ...
2
votes
1answer
30 views
How to unittest every class with the same public API in a module with python?
I have a module which parses different file formats like CSV, XLS, HTML, etc.
The different formats contains exactly the same information, so I made different classes for parsing different file types. ...
0
votes
0answers
14 views
Setup the functions getDataSet and tearDown
Im trying to set up a test for my code.. And i haven't rly found any good information about getDataSet.
What does getDataSet do? Why do i need it? And how should the function look like?
And the ...
0
votes
4answers
33 views
One Test-Class per method?
since today I have used the pattern to create one test class per class.
For example the class "Foo" with the methods "DoSomething" and "DoNothing" had one test class called "FooTests".
Now I have ...
4
votes
1answer
195 views
How can I create tests in Android Studio?
Just downloaded Android Studio which is based off of the Intellij ide.
How would one create tests?
I notice there is a option for create a Test Module but this doesn't seem to do anything, only ...
0
votes
1answer
33 views
How to mock spray-client response
I have a simple spray client :
val pipeline = sendReceive ~> unmarshal[GoogleApiResult[Elevation]]
val responseFuture = pipeline ...
1
vote
0answers
25 views
what are the factor i should test in Live Video Streaming in iOS?
I am testing one iPad Application which Includes Live Video Streaming.I am not aware of what should i test and How Should I test this iPad Application?Now I am using KIF as automated testing ...
1
vote
2answers
43 views
Is there an idiomatic Objective-C technique to make an init method return a stub implementation for testing?
I am writing a unit test for a class Foo, which has a collaborator, Bar. I want to use a manually-built stub implementation of Bar in Foo's test.
If I were doing this in Java, I would give Foo a ...
1
vote
1answer
152 views
Angular.js code coverage using Karma w. Coffeescript
I had some difficulties running Istanbul code coverage tool with Angular.js + Jasmine.
I'm coding in Coffeescript, but since Instanbul doesn't support it yet, source is converted to JS on every save.
...
0
votes
0answers
22 views
Mocking for unit testing in objective c
I am caught up in a situation to mock up an api connection, in order to unit test a function as -
I have api (api.h and api.m) class, this is talking to external apis.Say GetDataFromAPI()
Now i have ...
-1
votes
2answers
68 views
C#: Is there a way to launch the debugger from a codeline? [closed]
Question:
Is it possible to start a web project application in my current solution without debugger (keycombo: Ctrl+F5) through a codeline?
thanks in advance
0
votes
1answer
25 views
PHPUnit out of box not working on OSX
Installed PHPUnit via PEAR and copied the latest repository from https://github.com/sebastianbergmann/phpunit/
Wrote a basic test and saved it in the root directory (also tried /Tests/)
<?php
...
1
vote
1answer
71 views
Testing to the interface, in Clojure
In the Java world, when it comes to developing unit tests, I've followed an approach of "testing to the interface." What that means is, if I have a Java interface, I would write a single unit test ...
0
votes
1answer
16 views
Test structure XML in PHPUnit
I see assertEqualXMLStructure able to use test structure XML in PHPUnit. But I have problem with case: when 2 structure XML have different the number of children tags it failed although the structures ...
0
votes
2answers
47 views
How to make unit test run in bin folder
I'm trying to access a file in my solution structure during the unit test. My unit test project has the bin\Debug\ as the output directory. So I have written the code assuming that ...
0
votes
2answers
36 views
Pyunit run all tests even when assert fails
I Have a simple test like the following:
class TestAPIWrapper(unittest.TestCase):
def test_one(self):
assert 1==1, "Failed 1"
assert 2==1, "Failed 2"
assert 2==2, "Failed ...
0
votes
0answers
21 views
Other than modifying the method name, how do you control the run sequence of methods within a unit test in Visual Studio 2012?
I would like to ensure test methods within unit test are run in a particular sequence. There's not a dependency on a previous method. The tests are isolated. The sequence is obviously alphabetic based ...
1
vote
1answer
47 views
Testing android scala project
Has anyone discovered already how to test Android projects written in scala?
I still got NoClassDefFoundError even when I'm just declaring scala object.
What is more, some of my activities are ...
0
votes
1answer
26 views
checking for duplicate email and user name in unit test
I have to check for duplicate email and user name in this unit test. Speaking with another developer, he said I should check for the duplicate email and user name in a nested try catch. Im not sure I ...


