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.

learn more… | top users | synonyms (4)

371
votes
20answers
78k views

What C# mocking framework to use? [closed]

I want to start using mock objects on my next C# project. After a quick Google search I've found there are many: NMock EasyMock.NET TypeMock Isolator Commercial / Paid Rhino Mocks Moq ...
570
votes
21answers
116k 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 ...
474
votes
30answers
82k views

What's the proper way to test a class with private methods using JUnit?

How do I use JUnit to test a class that has internal private methods? It seems bad to change the access modifier for a method just to be able to run a test.
48
votes
3answers
9k views

Using IoC for Unit Testing

How can a IoC Container be used for unit testing? Is it useful to manage mocks in a huge solution (50+ projects) using IoC? Any experiences? Any C# libraries that work well for using it in unit tests? ...
319
votes
46answers
51k views

Is Unit Testing worth the effort? [closed]

I am working to integrate unit testing into the development process on the team I work on and there are some sceptics. What are some good ways to convince the sceptical developers on the team of the ...
239
votes
30answers
55k views

Unit Testing C Code

I worked on an embedded system this summer written in straight C. It was an existing project that the company I work for had taken over. I have become quite accustomed to writing unit tests in Java ...
109
votes
18answers
10k views

What is unit testing?

I saw many questions asking 'how' to unit test in a specific language, but no question asking 'what', 'why', and 'when'. What is it? What does it do for me? Why should I use it? When should I use it ...
17
votes
3answers
10k views

Fake DbContext of Entity Framework 4.1 to Test

I'm using this tutorial to Fake my DbContext and test: http://refactorthis.wordpress.com/2011/05/31/mock-faking-dbcontext-in-entity-framework-4-1-with-a-generic-repository/ But i have to change the ...
444
votes
17answers
101k views

Best practices for unit testing Android apps [closed]

I'd like to unit test my Android application but I found that test driven development in Android is far from trivial at the moment. Any tips, tricks, war stories for building light weight and ...
218
votes
15answers
64k views

What's the best mock framework for Java? [closed]

What's the best framework for creating mock objects in Java? Why? What are the pros and cons of each framework?
220
votes
24answers
67k views

How do you unit test private methods?

I'm building a class library that will have some public & private methods. I want to be able to unit test the private methods (mostly while developing, but also it could be useful for future ...
28
votes
4answers
9k views

Unit Testing DbContext

I've researched some information about techniques I could use to unit test a DbContext. I would like to add some in-memory data to the context so that my tests could run against it. I'm using ...
55
votes
14answers
19k views

Java: How to test methods that call System.exit()?

I've got a few methods that should call System.exit() on certain inputs. Unfortunately, testing these cases causes JUnit to terminate! Putting the method calls in a new Thread doesn't seem to help, ...
24
votes
15answers
3k views

Should one test internal implementation, or only test public behaviour?

Given software where ... The system consists of a few subsystems Each subsystem consists of a few components Each component is implemented using many classes ... I like to write automated tests of ...
173
votes
8answers
39k views

NUnit vs. MbUnit vs. MSTest vs. xUnit.net [closed]

There are quite a lot of unittesting frameworks out there for .NET. I found this little feature comparison: http://xunit.codeplex.com/wikipage?title=Comparisons Now I am to choose the best one for ...
303
votes
28answers
114k views

iPhone - strange error when testing on simulator

I was testing my app on the simulator when it crashed on clicking a button of a UIAlertView. I stopped debugging there, made some changes to the code and built the app again. Now when I run the ...
231
votes
20answers
25k views

How should I unit test threaded code?

Hot-on-the-heels of of my previous unit testing related question, here's another toughie: I have thus far avoided the nightmare that is testing multi-threaded code since it just seems like too much ...
210
votes
19answers
50k views

NUnit vs Visual Studio 2008's Test Projects for Unit Testing? [closed]

I am going to be starting up a new project at work and want to get into unit testing. We will be using VS 2008, C#, and the ASP.NET MVC stuff. I am looking at using either NUnit or the built in test ...
37
votes
4answers
12k views

ASP.NET MVC3 and Entity Framework Code first architecture

My previous question made me think again about layers, repository, dependency injection and architectural stuff like this. My architecture now looks like this: I am using EF code first, so I just ...
20
votes
3answers
3k views

How to generate dynamic (parametrized) unit tests in python?

I have some kind of test data and want to create an unit test for each item. My first idea was to do it like this: import unittest l = [["foo", "a", "a",], ["bar", "a", "b"], ["lee", "b", "b"]] ...
51
votes
12answers
27k views

Comparison of c++ unit test frameworks [closed]

I know there are already a few questions regarding recomendations for c++ unit test frameworks, but all the answers did not help as they just recomend one of the frameworks but do not provide any ...
100
votes
5answers
12k views

ASP.NET MVC: Unit testing controllers that use UrlHelper

One of my controllers actions, one that is being called in an Ajax request, is returning an URL to the client side so it can do a redirection. I'm using Url.RouteUrl(..) and during my unit tests this ...
41
votes
8answers
21k views

How to setup Google C++ Testing Framework (gtest) on Visual Studio 2005

It is not documented on the web site and people seems having problem setting up the framework. Can someone please show step by step introduction to a sample project setup.
51
votes
21answers
9k views

Should I test private methods or only public ones?

I have read this post about how to test private methods. I usually do not test them, because I always thought it's faster to test only public methods that will be called from outside the object. Do ...
12
votes
3answers
4k views

Injecting data to a WCF service

I have WCF services structured like suggested by Miguel Castro. This means that I have set everything up manually, and have a console application hosting my services using ServiceHost objects. I ...
14
votes
1answer
554 views

Dependency Hell — how does one pass dependencies to deeply nested objects?

Here is a generic imaginary example made up for this post. Consider 6 classes TableFactory, TableData, TableCRUD, TableSchema, DBConnect, Logger. TableFactory is the outer class, let's say it ...
101
votes
25answers
24k views

What is a reasonable code coverage % for unit tests (and why)?

If you were to mandate a minimum percentage code-coverage for unit tests, perhaps even as a requirement for committing to a repository, what would it be? Please explain how you arrived at your answer ...
36
votes
15answers
18k views

Choosing a C++ unit testing tool/framework [closed]

Could you recommend a testing tool/framework to use for testing C++ code in a UNIX environment?
87
votes
21answers
15k views

Unit testing for C++ code - Tools and methodology

I'm working on a large c++ system that is has been in development for a few years now. As part of an effort to improve the quality of the existing code we engaged on a large long-term refactoring ...
17
votes
2answers
1k views

.NET Unit test runner for iOS

Has anyone written (or know about) a .net unit-test runner, preference to NUnit, that runs on iOS ? or do I have to roll my own ? My goal is to execute the unit tests on the simulator or devices. So ...
139
votes
30answers
10k views

TDD Anti-patterns catalogue

anti-pattern : there must be at least two key elements present to formally distinguish an actual anti-pattern from a simple bad habit, bad practice, or bad idea: Some repeated pattern of action, ...
39
votes
9answers
18k views

Mocking Asp.net-mvc Controller Context

So the controller context depends on some asp.net internals. What are some ways to cleanly mock these up for unit tests? Seems like its very easy to clog up tests with tons of setup when I only need, ...
31
votes
6answers
7k views

How to run all tests belonging to a certain Category in JUnit 4

JUnit 4.8 contains a nice new feature called "Categories" that allows you to group certain kinds of tests together. This is very useful, e.g. to have separate test runs for slow and fast tests. I know ...
11
votes
4answers
1k views

The repository itself is not usually tested?

I'm sorry but I'm new to repositories patterns, unit tests and orm tools. I've been researching on unit tests and the repository pattern, and arrived at some conclusions, I wonder if I'm right. The ...
102
votes
6answers
23k views

rspec vs cucumber (rspec stories) [closed]

When should I use specs for Rails application and when Cucumber (former rspec-stories)? I know how both work and actively use specs, of course. But it still feels weird to use Cucumber. My current ...
70
votes
10answers
21k views

Best practices to test protected methods with PHPUnit [closed]

I found the discussion on Do you test private method informative. I have decided, that in some classes, I want to have protected methods, but test them. Some of these methods are static and short. ...
12
votes
2answers
7k views

Is UnitOfWork and GenericRepository Pattern redundant In EF 4.1 code first?

Wondering if I need to use the Genericrepository pattern and UnitOfWork to mock the repository.I am using MOQ.Is it now redundant since I have noticed that EF 4.1 has IDBSet. I have not figured out ...
24
votes
16answers
14k views

C++ unit testing framework

I use the Boost Test framework for my C++ code but there are two problems with it that are probably common to all C++ test frameworks: There is no way to create automatic test stubs (by extracting ...
42
votes
5answers
33k views

How to run Junit testcases from command line?

I would like to run junit test cases from commandline. Im using eclipse
9
votes
3answers
2k views

Are there any good TDD tools or resources for VB6?

Yea i know i'm way behind times but what i've got here is a antique VB6 editor app which i believe that no one will be upgrading to .NET soon. It uses a couple of third party DLLs tools and as it's ...
99
votes
3answers
12k views

What's the difference between faking, mocking, and stubbing?

I know how I use these terms, but I'm wondering if there are accepted definitions for faking, mocking, and stubbing for unit tests? How do you define these for your tests? Describe situations where ...
34
votes
4answers
16k views

Xcode 4: Run tests from the command line (xcodebuild)?

I've created a brand new iOS project in Xcode 4, and included unit tests. The default app has 2 targets, the main application and the unit test bundle. Using "Product > Test" (Command-U) builds the ...
54
votes
12answers
34k views

How to set up unit testing for Visual Studio C++

I'm having trouble figuring out how to get the testing framework set up and usable in Visual Studio 2008 for C++ presumably with the built-in unit testing suite. Any links or tutorials would be ...
82
votes
9answers
16k views

Simple test vs PHPunit

I was wondering if anyone that have experience in both these stuff can shed some light on the significant difference between the two, if any? Any specific strength of each that makes it suitable for ...
22
votes
5answers
9k views

How do you mock the session object collection using Moq

I am using shanselmann's MvcMockHelper class to mock up some HttpContext stuff using Moq but the issue I am having is being able to assign something to my mocked session object in my MVC controller ...
27
votes
9answers
5k views

Best way to test a MS Access application?

With the code, forms and data inside the same database I am wondering what are the best practices to design a suite of tests for a Microsoft Access application (say for Access 2007). One of the main ...
19
votes
6answers
15k views

How do I use MSTest without Visual Studio?

Does MSTest have standalone GUI similar to nUnit that lets me use it and run test without visual studio? What is the official site for MSTest where I can learn more about how to use it?
22
votes
8answers
21k views

Can't build and run an android test project created using “ant create test-project” when tested project has jars in libs directory

I have a module that builds an app called MyApp. I have another that builds some testcases for that app, called MyAppTests. They both build their own APKs, and they both work fine from within my ...
35
votes
9answers
11k views

Compare equality between two objects in NUnit

I'm trying to assert that one object is "equal" to another object. The objects are just instances of a class with a bunch of public properties. Is there an easy way to have NUnit assert equality ...
24
votes
14answers
9k views

What is your favourite code coverage tool(s)? (Free and non-free) [closed]

What is your favourite code coverage tool(s) (free/non-free) and how do you use them effectively? There are several options available, such as: CodeCover (Last Release: 2011-03-16) Coverlipse (Last ...

1 2 3 4 5 45