Introduction

TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use.

This projects contains simple utilities classes to integrate the google-guice use in TestNG framework, and data providers for Data Driven Development in TestNG.

This work takes inspiration from Beust - Suleiman's book, Next Generation Java Testing - TestNG and Advanced Concepts

Before Coding...

To set up your project, configure in your pom.xml the repository:

<repositories>
    ...
    <repository>
        <id>testnguice-repository</id>
        <name>testnguice Repository for Maven</name>
        <url>http://testnguice.googlecode.com/svn/repo</url>
        <layout>default</layout>
    </repository>
    ...
</repositories>

and the dependency in way to use the testnguice module:

<dependencies>
    ...
    <dependency>
        <groupId>com.testnguice</groupId>
        <artifactId>testnguice</artifactId>
        <version>2.0</version>
    </dependency>
    ...
</dependencies>