Checkstyle plug-in tutorial for Eclipse

Overview The Eclipse Checkstyle Plugin is an Open Source development tool which analyzes the source code and ensures that your Java code adheres strictly to a set of coding standards. The plugin does that by inspecting your source code and when it finds items which are deviation you are immediately notified of problems via the […]

Read more
Cucumber in Web testing (part 2 of 8)

2. How to install cucumber in Eclipse To start using cucumber in eclipse we need to install few things: First of all eclipse and Java Development Kit (JDK) need to be installed on the computer. Ones eclipse finished with the installation we are able to install “Cucumber Eclipse Plugin” with eclipse built-in plugin installation tool. […]

Read more
Cucumber in Web testing (part 1 of 8)

1. What is cucumber Cucumber is a testing framework which supports behavior-driven development (BDD). BDD is principally an idea about how software development should be managed by both business interests and technical insight. Implementation of BDD starts with describing the test cases with English like sentences following up with the test case implementation. With this […]

Read more
Configuring Selenium RC using Eclipse

This tutorial describes Eclipse setup to use with Selenium. First download all the necessary packages: Download Java JDK from: http://www.oracle.com/technetwork/java/javase/downloads/index.html Download Eclipse IDE for Java Developers : http://www.eclipse.org/downloads/ Download and Install Selenium IDE firefox plugin(needs browser restart): http://seleniumhq.org/download/ Download Selenium RC server and Selenium Client Drivers for Java: http://seleniumhq.org/download/ When all these packages are downloaded […]

Read more
Servlet Mapping for Google App Engine and Spring

This post is all about Spring MVC 3 and Google App Engine and their interaction. The starting point for this project was the Google App Engine’s documentation, the Google Eclipse plugin, and some tutorials found on various sites. After reading all about the App Engine and Spring, the first thing to do was to create […]

Read more
Selenium test in Java with Eclipse and JUnit

Its quite easy to run Selenium tests using Eclipse and JUnit. Basically all you need is to get Selenium RC: http://seleniumhq.org/download/ and get Eclipse (Eclipse Classic will do if you don’t need the rest, the Helios 3.6 already includes JUnit) http://www.eclipse.org/downloads/ to make things easier also get Selenium IDE (Firefox plugin for recoding tests and […]

Read more