vote up 4 vote down star
3

Just curious since all TDD examples I have seen is web programming related. And if its not a normal approach, why is it not?

flag

60% accept rate
Could you please include the full name "Test Driven Development" somewhere in your Question? I'm not sure if everyone kowns what it is, and a short Question like this doens't give a clue if you dont know the acronym. – Brian Schimmel Mar 6 at 17:29
If you know what Test Driven Development is, I would guess you know what TDD is as well but i'll change the title in case – TT Mar 6 at 17:51

7 Answers

vote up 11 vote down check

TDD has become a favored approach by software developers who are serious about their profession. [IEEE:TDD ] The benefits of the approach are significant, and the costs are low by comparison. [The Three Laws of TDD]

There are no software domains for which TDD is inappropriate, or ineffective. However, there are domains in which it is challenging. Gaming happens to be one of these.

Actually, the challenge is not so much gaming as it is UI. The reason UI is a challenge is that you often don't know what you want the UI to look like until you've seen it. UI is one of those things that you have to fiddle with. Getting it right is a deeply iterative process that is full of twists and turns and dead ends and back alleys. Writing tests first for UI is likely to be both difficult and wasteful.

Now before everybody roars off and says: "Uncle Bob says: 'Don't do TDD for UI'" let me say this. The fact that it's hard to do pure TDD for UI does not mean you can't do pure TDD for almost everything else. Much of gaming is about algorithm, and you can use TDD with those algorithms to your hearts delight. It's true, especially in gaming, that some of those algorithms are the kind of code you have to fiddle with, just like UI, and so are probably not amenable to being tested first. But there is a lot of other algorithmic code that can and should be written test first.

The trick here is to follow the Single Responsibility Principle (SRP) and separate those kinds of code that you have to fiddle with, from those kinds that are deterministic. Don't put easy-to-test algorithms in with your UI. Don't mix your speculative code with your non-speculative code. Keep the things that change for reason A separate from the things that change for reason B.

Also, keep this in mind: The fact that some code is hard to test first, does not mean that this code is hard to test second. Once you have fiddled and tweaked and gotten the code to work just the way you like, then you can write the tests demonstrate that the code works the way you think. (You'll be surprised at how many times you find bugs while doing this.)

The problem with writing tests "after the fact" is that often the code is so coupled that it is hard to write the kinds of surgical tests that are most helpful. So if you are writing the kind of code that is hard to test first, you should take care to follow The Dependency Inversion Principle (DIP), and The Open Closed Principle (OCP) in order to keep the code decoupled enough to test after the fact.

link|flag
1  
This post clearly and accurately pinpoints the problematics of the TDD approach, and its evangelists. It is seen not as a helpful tool to solve some of the problems faced in software development, but an omnipresent set of cookbook "principles" that must be applied at all cost, everywhere. – Rune Braathen Mar 8 at 12:50
Agreed Rune, though I think we all have a lot to learn from UB's SOLID principles I am often turned off by the inflexible way that he and his followers deliver their sermons. – Echostorm Mar 9 at 12:12
vote up 0 vote down

TDD isn't really a 'normal' approach anywhere yet as it's still relatively new and not universally understood or accepted yet. That isn't to say that some shops don't work that way now but I'm still surprised to hear anyone using it at all at this point.

link|flag
I'm not going to down vote or anything but TDD is so talked about (regardless if it has true merit or not) that I'm surprised that your "surprised to hear anyone using it at all at this point." – Mark Rogers Mar 6 at 17:45
TDD is pretty much standard in industries like aerospace or medical imaging, and have been for at least a decade. It might not have been called TDD, but automated regression tests, code coverage, etc.. were there long before it became trendy. – Kena Mar 6 at 17:56
Not to be nitpicky but automated testing does not necessarily mean that someone is doing TDD. – Dunk Mar 6 at 20:39
m4bwav - People talk about lots of things, that doesn't mean they actually understand or implement them. Kena sorta proves my point. Kena- Regression tests and code coverage != TDD. – Echostorm Mar 9 at 12:01
vote up 6 vote down

Games from Within has an article discussing their use of unit testing, the limitations of unit testing with regards to games in particular, and an automated functional testing server that they set up to help with this.

link|flag
vote up 1 vote down

Most game developers aren't exactly with it in terms of modern development practices. Thankfully.

But a test-driven development model emphasizes concentrating on how something would be used first, then fleshing out what it does. That in general is good to do since it forces you to concentrate on how a particular feature will actually fit into whatever you're doing (say, a game).

So good game developers do this naturally. Just not explicitly.

link|flag
vote up 0 vote down

If you are referring to the practice of writing and maintaining unit tests for every bit of code, I'd venture a guess and state that this is not in widespread use in the gaming industry. There are many reasons for this, but I can think of 3 obvious ones:

  • Cultural. Programmers are conservative, game programmers doubly so.
  • Practical. TDD does not fit very well to the problem domain (too many moving parts).
  • Crunchological. There's never enough time.

The TDD paradigm works best in application domains which are not very stateful, or at least where the moving parts are not all moving at the same time, to put it colloquially.

TDD is applicable to parts of the game development process (foundation libraries and such) but "testing" in this line of work usually means running automated fly-through, random key testing, timing io loads, tracking fps spikes, making sure the player can't wriggle his way into causing visual instabilities, stuff like that. The automaton is also very often a humanoid.

TDD can be a useful tool, but its status as a silver bullet that must-be-ubiquitous-when-making-a-system is rather questionable. Development should not be driven by tests, but by reason. RDD is a crappy acronym though - it won't catch on. ;)

link|flag
vote up 0 vote down

@Rune Once again, please emphasise the 'D' rather than the 'T'. At a unit level, the tests are a thinking tool to help you understand what you want and to drive the design of the code. Certainly at the unit level, I find I end up with cleaner, more robust code. The better the quality of the pieces I put into the system, the better they fit together with fewer (but not no) bugs.

That's not the same thing at all as the sort of serious testing that games need.

link|flag
Can't really see how this contrasts in any way with what I wrote. Thinking about testability when writing code is always good, but it will help you tackle only a subset of the testing needs of a reasonably large-sized game. – Rune Braathen Mar 8 at 12:59
vote up 1 vote down

Probably the main reason is that TDD is preferred by those with languages more conducive to it. But apart from that, games themselves are a poor match for the paradigm anyway.

Generally speaking (and yes, I do mean generally speaking, so please don't swamp me with counterexamples), test-driven design works best for event-driven systems and not so well for simulation-style systems. You can still use tests on your low level components in games, whether test-driven or just plain unit testing, but for more higher level tasks there is rarely any sort of discrete event that you can simulate with deterministic results.

eg. A web application typically has very distinct inputs (a HTTP request), changes a very small amount of state (eg. records in the DB), and generates a largely deterministic output (eg. HTML page). These can be easily checked for validity, and since generating the input is simple it's trivial to create tests.

However with games the input may be hard to simulate (especially if it needs to occur at a certain point... think of getting past loading screens, menu screens, etc), the amount of state you change may be large (eg. if you have a physics system, or complex reactive AI) and the output is rarely deterministic (random number use is the main culprit here, though things like floating point precision loss is another, as might be hardware specifications, or available CPU time, or the performance of a background thread, etc). To do TDD you need to know exactly what you expect to see in a certain event and to have an accurate way of measuring it, and both of these are difficult problems with simulations that avoid discrete events, deliberately include random factors, act differently on different machines, and have analogue outputs such as graphics and audio.

Additionally, there's one massive practical issue which is process startup time. Many of the things you will want to test require the loading of large quantities of data, and if you mock up the data you're not truly testing the algorithm. With this in mind it quickly becomes impractical to have any sort of test scaffolding that just performs individual tasks. You can run tests against a web server without having to take the webserver down each time - that's rarely possible with games unless you do the testing from an embedded scripting language (which is reasonable, and does indeed take place in the industry).

eg. You want to add volumetic shadow rendering to your in-game buildings. So you'd need to write a test that starts up all the necessary subsystems (eg. renderer, game, resource loaders), load in buildings (inc. mesh, materials/textures), load in a camera, position that camera to point at the building, enable the shadows, render a scene, and then somehow decide whether the shadows actually appear in the frame buffer. It's less than practical. In reality you'd have all this scaffolding already there in the form of your game, and you'd just fire it up to conduct a visual test in addition to any assertions within the code itself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.