|
| 1 | +<!--suppress HttpUrlsUsage --> |
| 2 | +<idea-plugin> |
| 3 | + |
| 4 | + <id>org.utbot.python</id> |
| 5 | + <name>UnitTestBot for Python</name> |
| 6 | + <vendor>utbot.org</vendor> |
| 7 | + <depends>com.intellij.modules.platform</depends> |
| 8 | + |
| 9 | + <depends config-file="withPython.xml">com.intellij.modules.python</depends> |
| 10 | + |
| 11 | + <actions> |
| 12 | + <action id="org.utbot.intellij.plugin.python.ui.actions.GenerateTestsAction" |
| 13 | + class="org.utbot.intellij.plugin.python.ui.actions.GenerateTestsAction" |
| 14 | + text="Generate Tests with UnitTestBot..." |
| 15 | + description="Cover code with auto-generated tests"> |
| 16 | + <add-to-group group-id="ProjectViewPopupMenu"/> |
| 17 | + <keyboard-shortcut keymap="$default" first-keystroke="alt shift U"/> |
| 18 | + <keyboard-shortcut keymap="$default" first-keystroke="alt U" second-keystroke="alt T"/> |
| 19 | + </action> |
| 20 | + </actions> |
| 21 | + |
| 22 | + <extensions defaultExtensionNs="com.intellij"> |
| 23 | + <projectConfigurable dynamic="true" parentId="tools" instance="org.utbot.intellij.plugin.settings.Configurable" |
| 24 | + id="org.utbot.intellij.plugin.settings.Configurable" |
| 25 | + displayName="UnitTestBot"/> |
| 26 | + <!--suppress PluginXmlValidity --> |
| 27 | + </extensions> |
| 28 | + |
| 29 | + <!-- Minimum and maximum build of IDE compatible with the plugin --> |
| 30 | + <description> |
| 31 | + <![CDATA[ |
| 32 | + UnitTestBot is the tool for automated unit test generation and precise code analysis. |
| 33 | + <br/><br/> |
| 34 | + Discover UnitTestBot key features in our latest release: |
| 35 | + <ul> |
| 36 | + <li>generating ready-to-use test cases — with valid inputs, method bodies, assertions, and comments</li> |
| 37 | + <li>maximizing <a href="https://en.wikipedia.org/wiki/Code_coverage">branch coverage</a> in <i>regression suite</i> while keeping the number of tests minimized</li> |
| 38 | + <li>finding deeply hidden code defects and expressing them as tests</li> |
| 39 | + <li>smart fuzzing platform</li> |
| 40 | + </ul> |
| 41 | + Try <a href="https://www.utbot.org/demo/?language=Python">UnitTestBot online demo</a> to see how it generates tests for your code in real time. |
| 42 | + <br/> |
| 43 | + Contribute to UnitTestBot via <a href="https://github.com/UnitTestBot/UTBotJava/blob/main/CONTRIBUTING.md">GitHub</a>. |
| 44 | + <br/> |
| 45 | + Found a bug? File an <a href="https://github.com/UnitTestBot/UTBotJava/issues">issue</a>. |
| 46 | + <br/> |
| 47 | + Have an idea? Start a <a href="https://github.com/UnitTestBot/UTBotJava/discussions">discussion</a>. |
| 48 | + ]]> |
| 49 | + </description> |
| 50 | +</idea-plugin> |
0 commit comments