1
vote
What are “best practices”?
@Ash
Totally agree with you about context. To me, the best best practice is common sense.
Kind Regards
…
5
votes
Javascript Unit-testing?
I already have tried both JsUnit and QUnit and I found QUnit is more easy to use. Some good articles about QUnit:
…
7
votes
how do you organize unit tests?
One test case per check and super descriptive names, per instance:
@Test
public void userCannotVoteDownWhenScoreIsLessThanOneHundred() {
...
}
Both only one asser …
6
votes
Best practices considered harmful?
There is no such thing like "best practices". There is "best practices for a given context".
Kind Regards
…
