Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions clean-abap/CleanABAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -4503,9 +4503,13 @@ ENDCLASS.

> [Clean ABAP](#clean-abap) > [Content](#content) > [Testing](#testing) > [Test Classes](#test-classes) > [This section](#how-to-execute-test-classes)

In the ABAP Development Tools, press Ctrl+Shift+F10 to run all tests in a class.
Press Ctrl+Shift+F11 to include coverage measurements.
Press Ctrl+Shift+F12 to also run tests in other classes that are maintained as test relations.
In the ABAP Development Tools use the following keyboard shortcuts to quickly execute tests:
| Key presses | Effect |
| :--- | :--- |
| `Ctrl`+`Shift`+`F9` | preview all tests (including test relations) |
| `Ctrl`+`Shift`+`F10` | run all tests in a class |
| `Ctrl`+`Shift`+`F11` | ... and include coverage measurements |
| `Ctrl`+`Shift`+`F12` | ... and also run tests in other classes that are maintained as test relations |

> On macOS, use `Cmd` instead of `Ctrl`.

Expand Down