Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.43 KB

testing-framework.md

File metadata and controls

51 lines (30 loc) · 1.43 KB

Usage of the testing framework

Goal for this training chapter

After this training session:

  • you know the test explorer and the Run tests button
  • you can execute tests within the IDE
  • you've knowledge about the command line based testing
  • you know, where you find something about test coverage

The test explorer and executing tests

In the tutorial, there are a couple predefined tests shipped they can be executed.

  1. Open the test explorer

    drawing

  2. Run the tests by clicking on Run Tests

    drawing

  3. See the test results

    drawing

    Alternative workflow

    You can also execute the tests by command line command. You've just to enter apax test in a terminal.

    apax test
    

    Note: in case of executing the tests by command line, the test explorer results will not be updated. The test results will be shown in the command line output.

Test coverage

If you're interested regarding the test coverage, you'll find information here.

Summary

Goal reached? Check yourself...

  • you know the test explorer and the Run tests button ✔
  • you can execute tests within the IDE ✔
  • you've knowledge about the command line based testing ✔
  • you know, where you find something about test coverage

Back to overview