Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

adessoSE/expressive-testing-demo

Repository files navigation

Expressive Testing Demo

Examples for demonstrating how to implement expressive tests using the following technologies:

Setup

  1. Make sure Java 8 is installed:
    java -version
    should yield something like: java version "1.8.0_..."
  2. Build the modules:
    gradlew build
  3. [Optional] Configure eclipse IDE:
    gradlew eclipse

Modules

  • system-under-test
    Implementation of an example system that is being tested.

  • tests-standard
    Demonstration of guidelines for implementing tests using JUnit 4.

  • tests-assertj Demonstration of guidelines for implementing tests using AssertJ.

  • tests-junit5
    Demonstration of guidelines for implementing tests using JUnit 5.