Jagger
 All Classes Namespaces Files Functions Variables Groups Pages

Start development of the first test project with Jagger




Run test project


Before running test project, you will need to run Local installation
After installation is finished, go to your project directory

Build Jagger test project

mvn clean install


Run test project

cd ./target/{artifactdId}-{version}-full/
./start.sh profiles/basic/environment.properties


Test project components

Created test project will have following test components:

  • Test description. It describes
    • Where and how to read test data
    • What protocol to use for communication with the SUT
    • How to validate if responses from the SUT are valid
  • Test. It describes:
    • What load strategy will be used
    • When the load test should be terminated
  • Test group. It describes what tests will be executed in parallel. Tests, belonging to the same test group are executed in parallel
  • Test suite. It describes the order of test group execution. This is the entity that can be executed. Test project can contain multiple test suits. You can run of the test suits at a time

In the code of the template project, you can look for: