/designtests

This repository contains experiments with design tests using DesignWizard API. This project contains scripts and programs for running design tests for a set of systems that use Hibernate/JPA and it been selected from github.

Primary LanguageJava

Welcome to the Design Tests wiki!

This project contains experiments with design tests using DesignWizard API. This project contains scripts and programs for running design tests for a set of systems that use Hibernate/JPA and it been selected from github.

Continuos Integration with Travis

Build Status

Instructions to Eclipse users

This project is deployed as an Eclipse project with Maven. In order to import DesignTests properly, consider the following steps:

  1. Clone the project from the official GitHub repository
  2. On Eclipse, install Git.
  3. On Eclipse, install Maven.
  4. On Eclipse, import a Java project of the cloned folder. Eclipse will understand the configuration on the existing project.

Instructions to Maven users

The DesignWizard project has the ASM dependency considered optional in the your pom.xml file. So, to use the DesignWizard API is necessary to inform the following dependencies:

    <dependency>
        <groupId>org.designwizard</groupId>
        <artifactId>designwizard</artifactId>
        <version>1.4</version>
        <scope>compile</scope>
    </dependency>
    <dependency>
        <groupId>asm</groupId>
        <artifactId>asm</artifactId>
        <version>3.1</version>
    </dependency>

History

For detailed changelog, see Releases.