Unit testing is a method by which individual units of source code are tested to determine if they are fit for use.

learn more… | top users | synonyms (4)

259
votes
17answers
55k 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 ...
241
votes
46answers
35k 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 skeptics. What are some good ways to convince the skeptical developers on the team of the ...
238
votes
60answers
22k views

Is a debugger the mother of all evil? [closed]

Some say that a debugger is the mother of all evil. What do you think of this approach? I have a friend at work, a colleague, who's completely against using a debugger whatsoever. I asked him: So, ...
227
votes
18answers
36k views

Looking for a better JavaScript unit test tool

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 ...
227
votes
29answers
34k 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.
200
votes
17answers
34k views

What C# mocking framework to use?

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 ...
186
votes
65answers
14k views

Why didn't unit testing work out for your project?

Give short concrete answer: why unit testing did NOT work out for you (your project). Will you particularly try again on a different project?
172
votes
19answers
45k views

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

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 ...
143
votes
17answers
34k 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?
142
votes
14answers
22k views

What is the best way to unit test Objective-C code?

What frameworks exist to unit test Objective-C code? I would like a framework that integrates nicely with Xcode.
140
votes
20answers
36k 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 ...
138
votes
20answers
10k 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 ...
123
votes
8answers
24k views

NUnit vs. MbUnit vs. MSTest vs. xUnit.net

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 ...
122
votes
28answers
7k 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, ...
117
votes
28answers
22k 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 ...
116
votes
20answers
56k 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 ...
97
votes
26answers
3k views

Making a private method public to unit test it…good idea?

I occasionally find myself needing to make a private method in a class public just to write some unit tests for it. Usually this would be because the method contains logic shared between other ...
97
votes
18answers
6k views

What Makes a Good Unit Test? [closed]

I'm sure most of you are writing lots of automated tests and that you also have run into some common pitfalls when unit testing. My question is do you follow any rules of conduct for writing tests ...
89
votes
16answers
15k views

Javascript Unit-testing?

What's the best way to go about running unit tests for Javascript? I've been playing around with Selenium IDE, but it's Firefox-specific. Selenium RC looks... difficult - but is it the best way to ...
86
votes
18answers
6k 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 ...
85
votes
24answers
5k views

How to make junior programmers write tests?

We have a junior programmer that simply doesn't write enough tests. I have to nag him every two hours, "have you written tests?" We've tried: Showing that the design becomes simpler Showing it ...
81
votes
17answers
10k views

Best unit test tutorials for beginners [closed]

Most decent programmers know that unit testing is important, but may not know where to begin. For a long time I knew the benefits of unit testing, but could never seem to figure out where a good ...
72
votes
32answers
5k views

Why don't they teach these things in school?

Over the summer, I was fortunate enough to get into Google Summer of Code. I learned a lot (probably more than I've learned in the sum of all my university coursework). I'm really wondering why they ...
69
votes
12answers
126k views

The located assembly's manifest definition does not match the assembly reference

I am trying to run some unit tests in a C# Windows Forms application (Visual Studio 2005) and I get the following error: System.IO.FileLoadException: Could not load file or assembly 'Utility, ...
69
votes
21answers
8k 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 ...
67
votes
6answers
13k views

rspec vs cucumber (rspec stories)

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 ...
66
votes
36answers
5k views

If unit testing is so great, why aren't more companies doing it?

The first real software company that I worked at was all about the unit testing (NUnit). I don't know that we were real sticklers for it back then -- I have no idea what our code coverage was like and ...
66
votes
9answers
12k views

Preferred Python unit-testing framework

So far I've been using the built-in unittest module for unit-testing Python code. However, for simple cases it seems like overkill. Being a derivative of xUnit, it appears a bit heavy for the dynamic ...
65
votes
17answers
3k views

TDD vs. Unit testing

My company is fairly new to unit testing our code. I've been reading about TDD and unit testing for some time and am convinced of their value. I've attempted to convince our team that TDD is worth ...
65
votes
10answers
6k views

Best way to implement unit testing in PHP

I'd really like to start implementing Unit Testing in my projects. I don't know how viable this is to do in PHP. If anyone has done this, how was it implemented? Did it increase productivity?
62
votes
12answers
14k views

Best practice Unit testing abstract classes?

I was wondering what the best practice is for unit testing abstract classes and classes that extend abstract classes. Should I test the abstract class by extending it and stubbing out the abstract ...
62
votes
35answers
7k views

Disadvantages of Test Driven Development? [closed]

What do I lose by adopting test driven design? List only negatives; do not list benefits written in a negative form.
58
votes
21answers
2k views

How do I get developers to treat test code as “real” code?

In the last two companies I've been at, I have found an overriding mentality among developers that it's okay to write unit tests in a throw-away style. Code that they would never write in the actual ...
58
votes
9answers
3k views

Is there hard evidence of the ROI of unit testing?

Unit testing sounds great to me, but I'm not sure I should spend any time really learning it unless I can convince others that is has significant value. I have to convince the other programmers and, ...
56
votes
4answers
4k views

What's the best strategy for unit-testing database-driven applications?

I work with a lot of web applications that are driven by databases of varying complexity on the backend. Typically, there's an ORM layer separate from the business and presentation logic. This makes ...
56
votes
18answers
12k views

Rhino Mocks, TypeMock, Moq, or NMock? Which one do you use and why?

Which one do you use (if you use the listed ones) and what do you love and even hate about it?
56
votes
13answers
8k views

Can you recommend an alternative for NCover?

I'm looking for a good .Net code coverage alternative to NCover (insufficient .Net 3.5 coverage and now pay-for) or VSTS (way too expensive). We currently test with NUnit, but could switch to ...
55
votes
5answers
6k 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 ...
54
votes
7answers
10k views

Best Practices of Test Driven Development Using C# and RhinoMocks [closed]

In order to help my team write testable code, I came up with this simple list of best practices for making our C# code base more testable. (Some of the points refer to limitations of Rhino Mocks, a ...
54
votes
24answers
11k 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 ...
53
votes
8answers
5k views

Python - doctest vs. unittest

I'm trying to get started with unit testing in Python and I was wondering if someone could inform me of the advantages and disadvantages of doctest and unittest. What conditions would you use each ...
52
votes
13answers
6k views

Where do the Python unit tests go? [closed]

If you're writing a library, or an app, where do the unit test files go? It's nice to separate the test files from the main app code, but it's awkward to put them into a "tests" subdirectory inside ...
51
votes
3answers
4k 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 ...
51
votes
7answers
9k views

What are some popular naming conventions for Unit Tests?

General Follow the same standards for all tests. Be clear about what each test state is. Be specific about the expected behavior. Examples 1) MethodName_StateUnderTest_ExpectedBehavior Public ...
51
votes
35answers
5k views

How do you know what to test when writing unit tests?

Using C#, I need a class called User that has a username, password, active flag, first name, last name, full name, etc. There should be methods to Authenticate and Save. Do I just write a test for ...
50
votes
13answers
2k views

How do programmers work together on a project?

I've always programmed alone, I'm still a student so I never programmed with anyone else, I haven't even used a version control system before. I'm working on a project now that requires knowledge of ...
50
votes
9answers
19k views

C#: How do I use Assert (Unit Testing) to verify that an exception has been thrown?

The title says it all - how do I use Assert (or other Test class?) do verify that an exception has been thrown? Thanks :)
48
votes
13answers
4k views

What is the difference between integration and unit tests?

I know the so-called textbook definition of unit tests and integration tests. What I am curious about is when it is time to write unit tests... I will write them to cover as many sets of classes as ...
46
votes
8answers
3k views

What's a good way to overwrite DateTime.Now during testing?

I've got some (C#) code that relies on today's date to correctly calculate things in the future. If I use today's date in the testing, I have to repeat the calculation in the test, which doesn't feel ...
45
votes
8answers
10k 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 ...

1 2 3 4 5 229