About Me
I'm a contract Java developer working in Melbourne for the past 10+ years.
More recently I created onmydoorstep.com.au, a place to find out more about where you live in Australia.
I'm also active in the open-source community with several projects ongoing.
Follow me on Twitter here.Tags
ant apple automation cluster css cv Design developer doclet documentation drm ebook pdf Google guice guides ide ioc IT jasperreports Java javadoc javascript jobs jpa junit markdown mockito netbeans off-topic open-source performance recruitment regex releases servers soap-box syntax testing tips ui visural-common visural-wicket warp-persist web wicket windows-
Popular Posts
Currently Reading
Tag Archives: testing
NetBeans 6.7 Broke My Parameterized Tests
If you had some JUnit parameterized tests with code such as: import java.util.Collection; import junit.framework.TestCase; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; @RunWith(Parameterized.class) public class MyParamTest extends TestCase { public MyParamTest(String s1, String s2) { // do something with s1 and s2 } … Continue reading
Testing Abstract Classes With Mockito and JUnit
Often times in Java, you have an abstract parent class which has some concrete methods which call abstract methods which will be implemented by the child classes. So what’s an easy way to test this sort of pattern? A mock … Continue reading