Monthly Archives: June 2011

Multiple test configurations with TestNG

I use TestNG for automated testing as it has a number of features that JUnit doesn’t have. One of its strengths is the power and flexibility of configuring tests and supplying parameters to them, for which there are two methods: … Continue reading

Posted in Groovy, Testing | Tagged , | Leave a comment

Cool Groovy features 6 – XML parsing

Groovy offers a number of features to make XML processing easier: Building XML using a concise syntax and the MarkupBuilder class. XMLSlurper – allows you to read XML and use GPath, similar to XPath, to query the document. XMLParser – … Continue reading

Posted in Groovy | Tagged | Leave a comment