diff --git a/doc/nvim-java.txt b/doc/nvim-java.txt index b90a1b7..709c13b 100644 --- a/doc/nvim-java.txt +++ b/doc/nvim-java.txt @@ -1,4 +1,4 @@ -*nvim-java.txt* For Neovim >= 0.11.5 Last change: 2025 December 10 +*nvim-java.txt* For Neovim >= 0.11.5 Last change: 2026 February 05 ============================================================================== Table of Contents *nvim-java-table-of-contents* @@ -131,6 +131,8 @@ TEST ~ - `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 @@ -235,6 +237,18 @@ TEST ~ 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