Skip to content

Latest commit

 

History

History
40 lines (21 loc) · 1.53 KB

README.md

File metadata and controls

40 lines (21 loc) · 1.53 KB

hps-java-junit

Build Status

Hiptest publisher samples with Java/JUnit

In this repository you'll find tests generated in junit format from Hiptest, using Hiptest publisher.

The goals are:

  • to show how tests are exported in JUnit.
  • to check exports work out of the box (well, with implemented actionwords in java)

System under test

The SUT is a (not that much) simple coffee machine. You start it, you ask for a coffee and you get it, sometimes. But most of times you have to add water or beans, empty the grounds. You have an automatic expresso machine at work or at home? So you know how it goes :-)

Update tests

To update the tests:

hiptest-publisher -c junit.conf --only=tests

The tests are generated in src/test/java/com/coffeemachine/ProjectTest.java

Run tests

First, you must use maven to build the project and run the tests:

mvn package

The SUT implementation can be seen in src/main/java/com/coffeemachine/CoffeeMachine.java

By default test report is generated in target/surefire-reports/TEST-com.coffeemachine.ProjectTest.xml