Published at: 03:02 pm - Sunday February 07 2010
In my last blog post, I described how to use JUnit Theories to create large amounts of test runs, with very limited amount of work, like so: import static org.junit.Assume.assumeTrue; @RunWith(Theories.class) public class TheorieTest { @DataPoint public static String a = "a"; @DataPoint public static String b = "bb"; @DataPoint public static [...]
Published at: 01:01 pm - Sunday January 24 2010
A week ago I started learning Scala. One of the features I found pretty interesting are mixins and traits. That was just the point of time, when I read this little tweet of GeekyL: “i am still not sure if mixins are super cool or dark magic.” Of course I was instantly reminded of the [...]
Published at: 10:10 am - Sunday October 18 2009
Some days ago I was asked to set up a tomcat server for SSL. You’d think this is a no brainer. And it actually is when you proceed along the paved path. But if you deviate only a little, you are in big trouble. I solved the trouble I got in, and here is my [...]