File tree Expand file tree Collapse file tree 3 files changed +13
-0
lines changed
core/resources/resources/software/aws/toolkits/resources Expand file tree Collapse file tree 3 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 7272 <keyboard-shortcut keymap =" $default" first-keystroke =" meta alt A" />
7373 </action >
7474
75+ <action id =" aws.toolkit.jetbrains.core.services.cwc.commands.GenerateUnitTestsAction"
76+ class =" software.aws.toolkits.jetbrains.services.cwc.commands.GenerateUnitTestsAction" >
77+ <keyboard-shortcut keymap =" $default" first-keystroke =" meta alt T" />
78+ </action >
79+
7580 <action id =" aws.toolkit.jetbrains.core.services.cwc.commands.SendToPromptAction"
7681 class =" software.aws.toolkits.jetbrains.services.cwc.commands.SendToPromptAction" >
7782 <keyboard-shortcut keymap =" $default" first-keystroke =" meta alt S" />
Original file line number Diff line number Diff line change 1+ // Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
2+ // SPDX-License-Identifier: Apache-2.0
3+
4+ package software.aws.toolkits.jetbrains.services.cwc.commands
5+
6+ class GenerateUnitTestsAction : CustomAction (EditorContextCommand .GenerateUnitTests )
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ action.aws.toolkit.jetbrains.core.services.cwc.commands.ExplainCodeAction.descri
2020action.aws.toolkit.jetbrains.core.services.cwc.commands.ExplainCodeAction.text =Explain Code
2121action.aws.toolkit.jetbrains.core.services.cwc.commands.FixCodeAction.description =Fixes the selected code
2222action.aws.toolkit.jetbrains.core.services.cwc.commands.FixCodeAction.text =Fix Code
23+ action.aws.toolkit.jetbrains.core.services.cwc.commands.GenerateUnitTestsAction.description =Generates unit tests for the selected code
24+ action.aws.toolkit.jetbrains.core.services.cwc.commands.GenerateUnitTestsAction.text =Generate Tests
2325action.aws.toolkit.jetbrains.core.services.cwc.commands.OptimizeCodeAction.description =Optimizes the selected code
2426action.aws.toolkit.jetbrains.core.services.cwc.commands.OptimizeCodeAction.text =Optimize Code
2527action.aws.toolkit.jetbrains.core.services.cwc.commands.RefactorCodeAction.description =Refactors the selected code
You can’t perform that action at this time.
0 commit comments