Search Results

7
votes

Are unit-test names important?

Yes, the names are totally important, specially when you are running the tests in console or continuous integration servers. Jay Fields wrote a …
1
vote

NUnit - How to test all classes that implement a particular interface

@Gaius, I use that approach. You could even find it documented in c2 wiki: http://c2.com/cgi …
2
votes

Mocking Static Blocks in Java

You could write your test code in Groovy and easily mock the static method using metaprogramming. Math.metaClass.'static'.max = { int a, int b -> a + b } Math.max 1, 2 …
2
votes

What Makes a Good Unit Test?

Jay Fields has a lot of good advices about writing unit tests and there is …
6
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: …
17
votes

Selenium Critique

If you are using Selenium IDE to generates code, then you just get a list of every action that selenium will executes. To me, Selenium I …
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 …
2
votes

Should domain objects and simple JavaBeans be unit tested?

How can you securely refactoring untested code? What will happen when your bean pojo changes if you haven't tests? Are you creating a …