Posted on
December 31st, 2010
With an aim to ease the development of android applications Spring-Android, an extension to Spring framework is released.The framework with it's first release brings in RestTemplate and commons-logging support for the Android based applications.
This blog is the result of my experience while using the Spring-Android framework in one of the android applications that I am currently working on.This post mainly focuses on the steps involved to get it working.
Read more »
Posted on
August 31st, 2010
In one of the Android applications that I was creating the requirement was to have graphs and charts to present the data in a meaningful way to the user. With no direct charting API support in Android to address graphs and charts creation, I explored few other possible solutions.
This blog does not focus on comparing the available solutions but demonstrates the simple implementations using the approaches explored.
I considered three different ways to create charts in Android device
1. Google chart API
2. Achartengine
3. ChartDroid
Read more »
Posted on
May 10th, 2010
Intent
To automate execution of the FitNium acceptance tests and generate reports using maven. This is particularly useful in test driven and continuous integration environment.
Motivation
In one of the recent projects we wanted to integrate FitNium acceptance tests with maven based build system.We were using FitNium as it allows us to write and execute Selenium tests using the FitNesse framework but without the need to write a single line of code.
We had created the FitNium test script to test our application. FitNium test script is based on FitNesse doFixture and provides a English language interpretation of the Selenium API.
As part of the maven build system we wanted
- Automatic start up of the servers (Application server, Selenium and FitNesse)
- Execution of the acceptance tests along with the report generation
- Stopping the servers
How we accomplished this forms the basis of this post.
Read more »