|
|
|
|
|
by anthonyb
4837 days ago
|
|
You're supposed to refactor your code. Layering tests on top of tests means that you end up spending more time maintaining tests than writing code. Also, don't test stuff that isn't going to break, and avoid writing system and UI tests unless you absolutely have to. |
|
> Also, don't test stuff that isn't going to break
Hah! =) But how will I prove that i++; is actually incrementing i!