Developer

By Barnaby Golden, 7 January, 2015

 

1. Use the same deployment mechanism for all environments

When you do something often, you get good at it. So deploy to all environments using the same mechanism. That way, when you deploy to production things less likely to go wrong.

 

By Barnaby Golden, 8 September, 2014

Agile emphasises the importance of communication. This is not just about the formal communication at stand-ups and meetings, it is also about everyday communication within the team.

Consider the following example.

A team member tries something new with some automated tests. They hope the change could be an improvement and that it could provide significant benefits.

By Barnaby Golden, 30 June, 2014

Performance testing is often difficult and expensive to do. When you need to get real-World performance figures you need to test on real-World hardware and this is not always possible. Even when it can be achieved it is difficult to do frequently without a dedciated (and hence expensive) performance environment.

By Barnaby Golden, 17 June, 2014

Jenkins is an excellent choice for continuous integration as it has numerous plugins available, is well supported and is open source.

The following is a list of some of the most useful plugins and how they can be used.

 

GIT Plugin

By Barnaby Golden, 10 June, 2014

A word of caution for anyone switching to Java 8 (which is now officially released by Sun).

Issues I have found so far:

Eclipse

The previous version of Kepler Eclipse runs with Java 8, but it only understands compliance levels up to Java 7.

By Barnaby Golden, 19 May, 2014

When we talk about non-functional requirements we often focus on performance and response times. But there are many other types of non-functional requirements and their obscurity can lead to them being missed.

Here are some non-functional requirements that can get forgotten:

By Barnaby Golden, 27 December, 2013

Agile drives frequent releases and frequent releases drive automated testing. You can't just switch on test automation though, there is a lot of investment in time and energy required and the payoff is usually in the medium to long term.

By Barnaby Golden, 19 June, 2013

With the basic application in place it is now time to focus on testing. First up we add a Cucumber acceptance test. It is a good idea to keep your acceptance tests separate from your unit tests, so I tend to run them in the integration-test phase of Maven. To do this use the failsafe plugin, adding something like this to your pom: