3
votes
What to put in the IF block and what to put in the ELSE block?
If the code is to check for an error condition, I prefer to put that code first, and the "successful" code second; conceptually, this keeps a function call and its error-checking code together, whi …
0
votes
Should you display what’s happening in the unit test as it runs?
Displaying information can be useful; if you're trying to find out why a test failed, it can be useful to be able to see more than just a stack trace, and what happened before the program reached t …
