Month: September 2008

  • Spreadsheet Driven

    I had a quite a few chats these days with people fro a more QAish background. Originally I intended just to look at selenium and webdriver. I showed some of the stuff, which I wrote in Java, to my QA colleagues. I used a demo webapp that implements a phonebook. My testcase just added a…

  • Poor man’s delegates

    When writing Swing applications I find myself quite often in the Situation to write action handling code like this (Why I do write this kind of code is a different albeit also interesting story): public class Handler { Action doMyThing; public Handler() { doMyThing = new AbstractAction(“doMyThing”){ public void actionPerformed(ActionEvent e) { doMyThing(); } };…