Tagged Questions

Test Driven Development involves writing a failing set of automated tests to specify what is to be built before implementation, which prevents over-engineering. The tests are then made to pass by writing code which satisfies the tested condition. Finally, code is refactored in a way that the desired behavior is preserved but the underlying code is more concise.

learn more… | top users | synonyms (2)

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 ...
227
votes
18answers
37k 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.
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?
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 ...
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, ...
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 ...
73
votes
17answers
3k views

How do you unit test a unit test?

I was watching Rob Connerys webcasts on the MVCStoreFront App, and I noticed he was unit testing even the most mundane things, things like: public Decimal DiscountPrice { get { return ...
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 ...
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
13answers
3k views

Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC [closed]

I have a fairly slick approach to doing C# development using the above tools/methodologies. Specifically i follow the "Jeffrey Palermo Agile Bootcamp" onion architecture. I feel like I'm a strong ...
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 ...
53
votes
14answers
7k views

TDD/BDD screencast/video resources

I've recently finished watching the Autumn of Agile screencasts and I'm looking for more material of similar scope. Basically, I'm looking for screencasts that present TDD/BDD process while developing ...
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 ...
44
votes
7answers
10k views

What do programmers mean when they say, “Code against an interface, not an object.”?

I've started the very long and arduous quest to learn and apply TDD to my workflow. I'm under the impression that TDD fits in very well with IoC principles. After browsing some of TDD tagged ...
43
votes
11answers
4k views

Beginning TDD - Challenges? Solutions? Recommendations? [closed]

OK, I know there have already been questions about getting started with TDD.. However, I guess I kind of know the general concensus is to just do it , However, I seem to have the following problems ...
41
votes
14answers
1k views

TDD: Does it get in the way of good API design?

I've never written TDD code, but I've seen a decent amount of discussion about it here on SO. My biggest concern with it is that it seems like general good API design (for flexibility, ease of use, ...
39
votes
17answers
2k views

How deep are your unit tests? [closed]

The thing I've found about TDD is that its takes time to get your tests set up and being naturally lazy I always want to write as little code as possible. The first thing I seem do is test my ...
38
votes
7answers
8k views

How to get started on TDD with Ruby on Rails?

I am familiar with the concepts (took testing classes in college), but I am not sure how to really use them yet since I never worked on a "real" TDD project. I am about to start the development of a ...
38
votes
17answers
2k views

I do not write tests. Am I stupid?

I've done a little bit of reading on unit testing and TDD, and I've never seriously considered writing tests to such a precise extent. Granted, I am not working on any projects that are ridiculously ...
33
votes
17answers
2k views

TDD - How to start really thinking TDD?

I have been reading about Agile, XP methodologies and TDDs. I have been in projects which states it needs to do TDD, but most of the tests are somehow integration tests or during the course of ...
33
votes
16answers
1k views

Is TDD overkill for small projects?

I have been reading quite a bit recently about TDD and such and I'm not quite sold on it just yet.. I make a lot of small hobby projects(just me) and I'm concerned if trying to do TDD is overkill for ...
33
votes
14answers
8k views

Best books about TDD [closed]

I'd like to enhance my TDD knowledge and practice. What would you recommend to read?
33
votes
8answers
5k views

What are the primary differences between TDD and BDD?

Test Driven Development has been the rage in the .NET community for the last few years. Recently, I have heard grumblings in the ALT.NET community about BDD. What is it? What makes it different from ...
31
votes
4answers
5k views

When to use rspec let()?

I tend to use before blocks and set instance variables in then and use them across my examples, but recently I came upon let(). According to rspec docs, it is used to ... to define a memoized ...
31
votes
9answers
626 views

How did/would you “force” yourself to do TDD rather than TAD?

I've been trying to jump on the TDD bandwagon for some time now, and it's been going well except for one crucial thing, normally what I end up doing is Test After Development. I need a mental shift ...
31
votes
6answers
4k views

Cuke4Nuke or SpecFlow?

I am trying to decide if I should use Cuke4Nuke or SpecFlow. What are the pro/cons of each? Opinions on which is better and why. Thanks!
29
votes
6answers
3k views

F# development and unit testing?

I just got started with F#, which is my first functional language. I have been working quasi-exclusively with C#, and enjoy a lot how F# leads me to re-think how I write code. One aspect I find a bit ...
29
votes
14answers
2k views

When to rewrite a code base from scratch

I think back to Joel Spolsky's article about never rewriting code from scratch. To sum up his argument: The code doesn't get rusty, and while it may not look pretty after many maintenance releases, ...
29
votes
5answers
5k views

How do I test database-related code with NUnit?

I want to write unit tests with NUnit that hit the database. I'd like to have the database in a consistent state for each test. I thought transactions would allow me to "undo" each test so I searched ...
28
votes
13answers
1k views

How to run unit-tests in all browsers?

I've never used Selenium but I guess it's for simulating user interaction in all browsers. That's like integration tests. But how do you test your js libraries/frameworks (unit testing) on all the ...
28
votes
14answers
2k views

Should I Use TDD?

I'm the only developer in my (very small) company and I'm about to start on a medium sized ASP.NET web application for said company. I'm trying to figure out if I should learn Test Driven ...
28
votes
8answers
1k views

How do you unit test regular expressions?

I'm new to TDD, and I find RegExp quite a particular case. Is there any special way to unit test them, or may I just threat them as regular functions?
28
votes
23answers
3k views

What not to test when it comes to Unit Testing?

In which parts of a project writing unit tests is nearly or really impossible? Data access? ftp? If there is an answer to this question then %100 coverage is a myth, isn't it?
27
votes
6answers
4k views

Developing UI in JavaScript using TDD Principles

I've had a lot of trouble trying to come up with the best way to properly follow TDD principles while developing UI in JavaScript. What's the best way to go about this? Is it best to separate the ...
27
votes
12answers
2k views

What is Test Driven Development (TDD)?

What is TDD (Test Driven Development) Please include both benefits and drawbacks, as well as tools for your taste.
26
votes
12answers
2k views

TDD Exercise Ideas

I am about to give a TDD workshop. I have the theoretical part pretty much sorted out, but I wish to avoid typical Tic-tac-toe, Currency or god forbid Calculator exercise. Any suggestions for a good ...
26
votes
6answers
8k views

Mocking Static methods using Rhino.Mocks

Is it possible to mock a static method using Rhino.Mocks ? if Rhino does not support this.. Is there a pattern or something which would let me accomplish the same ?
26
votes
5answers
6k views

How to test JSON result from Rails functional tests?

As title, I want to assert my AJAX request and test the JSON output, how can I do that?
26
votes
6answers
1k views

Is it feasible to introduce Test Driven Development (TDD) in a mature project?

Say we have realized a value of TDD too late. Project is already matured, good deal of customers started using it. Say automated testing used are mostly functional/system testing and there is a good ...
26
votes
13answers
1k views

Random data in Unit Tests?

I have a coworker who writes unit tests for objects which fill their fields with random data. His reason is that it gives a wider range of testing, since it will test a lot of different values, ...
25
votes
22answers
870 views

Can unit testing be successfully added into an existing production project? If so, how and is it worth it?

I'm strongly considering adding unit testing to an existing project that is in production. It was started 18 months ago before I could really see any benefit of TDD (face palm), so now it's a rather ...
25
votes
8answers
1k views

What do you test with your unit tests?

TDD is something that seems to be on everybody's lips these days, and I have tried some on my own but I don't think I'm getting the idea. I am getting a grip on how to write a unit test, but I don't ...
24
votes
5answers
1k views

BDD with Cucumber and rspec - when is this redundant?

A Rails/tool specific version of: How deep are your unit tests? Right now, I currently write: Cucumber features (integration tests) - these test against the HTML/JS that is returned by our app, but ...
24
votes
20answers
1k views

What are some reasons why a sole developer should use TDD?

I'm a contract programmer with lots of experience. I'm used to being hired by a client to go in and do a software project of one form or another on my own, usually from nothing. That means a clean ...
24
votes
10answers
737 views

Can you pair program remotely?

We have a team of about 7 engineers, whom I supervise. We do not have a formal office where we all work. Instead, a handful are located outside of our city, while the rest of us are scattered around ...
23
votes
6answers
237 views

While doing TDD and adding features incrementally, do I design database ahead or add tables and columns while coding?

One of the most important opportunity TDD gives us, from my point of view, is to develop projects incrementally, adding features one by one, which means ideally we have working system at every point ...
23
votes
4answers
1k views

Mocking vs. faking, when to use what?

Can anyone come up with a guidelines kind of stuff, suggesting the ideal scenarios when to go for mocking or faking (setting up the essentials manually). Bit confused with the approach?
23
votes
10answers
3k views

How do I write unit tests in PHP?

I've read everywhere about how great they are, but for some reason I can't seem to figure out how exactly I'm supposed to test something. Could someone perhaps post a piece of example code and how ...

1 2 3 4 5 38