File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -119,6 +119,8 @@ Yep! That's all :)
119119- ` JavaTestDebugCurrentClass ` - Debug the test class in the active buffer
120120- ` JavaTestRunCurrentMethod ` - Run the test method on the cursor
121121- ` JavaTestDebugCurrentMethod ` - Debug the test method on the cursor
122+ - ` JavaTestRunAllTests ` - Run all tests in the workspace
123+ - ` JavaTestDebugAllTests ` - Debug all tests in the workspace
122124- ` JavaTestViewLastReport ` - Open the last test report in a popup window
123125
124126### Profiles
@@ -219,6 +221,18 @@ require('java').test.run_current_method()
219221require (' java' ).test .debug_current_method ()
220222```
221223
224+ - ` run_all_tests ` - Run all tests in the workspace
225+
226+ ``` lua
227+ require (' java' ).test .run_all_tests ()
228+ ```
229+
230+ - ` debug_all_tests ` - Debug all tests in the workspace
231+
232+ ``` lua
233+ require (' java' ).test .debug_all_tests ()
234+ ```
235+
222236- ` view_report ` - Open the last test report in a popup window
223237
224238``` lua
You can’t perform that action at this time.
0 commit comments