Archive for the tag 'maven'

Jan 16 2009

Ruby with Maven and a bit of Cucumber love

Published by under Development,Java

A while back I was trying to do some initial tries at Ruby as a scripting language with JRuby. That means that I had a Java system, but needed to do some util scripting for the system, and wanted to avoid those pesky bash scripts. Because I had a Java system and Maven infrastructure in [...]

One response so far

Dec 12 2008

Quicker JUnit Spring context tests in Maven

Published by under Java

This is probably fairly well known, but I couldn’t find any doc on it when I searched so I’ll put it up here.
First off: Don’t load your Spring Context in your tests unless you absolutely have to. Some integration tests should load it, but keep it to a minimum. Loading the context is expensive, especially [...]

3 responses so far

Dec 01 2008

Clover saving time in development

Published by under Java

I read this post about Clover and using it to minimise the number of tests run. A nice idea, so I decided to have a go at it.
What it does is use the test-coverage that it was originally written to do, to figure out which tests exercise which classes. So when you change Class1 and [...]

3 responses so far