From 478ce70e3ee48acd6fa0fbfccb4d59909b384a36 Mon Sep 17 00:00:00 2001 From: Marco K Date: Wed, 4 Feb 2026 08:07:33 +0100 Subject: [PATCH] Update README with new test commands --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 125650d..d7776b2 100644 --- a/README.md +++ b/README.md @@ -119,6 +119,8 @@ Yep! That's all :) - `JavaTestDebugCurrentClass` - Debug the test class in the active buffer - `JavaTestRunCurrentMethod` - Run the test method on the cursor - `JavaTestDebugCurrentMethod` - Debug the test method on the cursor +- `JavaTestRunAllTests` - Run all tests in the workspace +- `JavaTestDebugAllTests` - Debug all tests in the workspace - `JavaTestViewLastReport` - Open the last test report in a popup window ### Profiles @@ -219,6 +221,18 @@ require('java').test.run_current_method() require('java').test.debug_current_method() ``` +- `run_all_tests` - Run all tests in the workspace + +```lua +require('java').test.run_all_tests() +``` + +- `debug_all_tests` - Debug all tests in the workspace + +```lua +require('java').test.debug_all_tests() +``` + - `view_report` - Open the last test report in a popup window ```lua