Tagged Questions

79
votes
58answers
8k 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?
79
votes
17answers
17k 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 …
70
votes
51answers
4k views

Is a debugger the mother of all evil?

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, …
70
votes
35answers
5k views

Is Unit Testing worth the effort?

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 …
64
votes
27answers
4k 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, …
61
votes
24answers
3k 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 …
54
votes
22answers
5k views

What’s the best way of unit testing private methods?

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. Thanks.
50
votes
36answers
3k 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 …
49
votes
17answers
2k views

What Makes a Good Unit Test?

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 …
45
votes
12answers
4k views

What c# mocking framework to use?

I want to start using mock objects on my next c# project. After a quick google I've found there are many: NMock EasyMock.Net TypeMock Isolator Commercial / Paid Rhino Mocks Moq So my question …
45
votes
14answers
2k 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 …
44
votes
14answers
2k views

What is unit testing?

Saw many questions asking 'how' to unittest 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 …
40
votes
32answers
3k 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 …
35
votes
35answers
3k 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 …
35
votes
9answers
3k 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.

1 2 3 4 5 196 next
15 30 50 per page