|
|
|
|
|
by oselhn
2729 days ago
|
|
That's not true. From my experience unit tests are great for agile. It will allow you to create "trusted" modules which you can move around and rework much easier (you can also treat your tests as executable documentation). Without tests you can't safely do any change to existing code especially if you are changing code written by someone else. You have to risk it and than spent considerable time in debugger if it breaks something unrelated to your feature. |
|
Not when you're constantly prototyping, which is what game dev essentially is for the most part of the process...