File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 1- *nvim-java.txt* For Neovim >= 0.11.5 Last change: 2025 December 10
1+ *nvim-java.txt* For Neovim >= 0.11.5 Last change: 2026 February 05
22
33==============================================================================
44Table of Contents *nvim-java-table-of-contents*
@@ -131,6 +131,8 @@ TEST ~
131131- `JavaTestDebugCurrentClass` - Debug the test class in the active buffer
132132- `JavaTestRunCurrentMethod` - Run the test method on the cursor
133133- `JavaTestDebugCurrentMethod` - Debug the test method on the cursor
134+ - `JavaTestRunAllTests` - Run all tests in the workspace
135+ - `JavaTestDebugAllTests` - Debug all tests in the workspace
134136- `JavaTestViewLastReport` - Open the last test report in a popup window
135137
136138
@@ -235,6 +237,18 @@ TEST ~
235237 require('java' ).test.debug_current_method()
236238<
237239
240+ - `run_all_tests` - Run all tests in the workspace
241+
242+ >lua
243+ require('java' ).test.run_all_tests()
244+ <
245+
246+ - `debug_all_tests` - Debug all tests in the workspace
247+
248+ >lua
249+ require('java' ).test.debug_all_tests()
250+ <
251+
238252- `view_report` - Open the last test report in a popup window
239253
240254>lua
You can’t perform that action at this time.
0 commit comments