-
Notifications
You must be signed in to change notification settings - Fork 45
Rider fixes #1550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Rider fixes #1550
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,60 +1,24 @@ | ||
| <!--suppress HttpUrlsUsage --> | ||
| <idea-plugin> | ||
|
|
||
| <id>org.utbot.intellij.plugin.id</id> | ||
| <id>org.utbot.rider.plugin.id</id> | ||
| <name>UnitTestBot</name> | ||
| <vendor>utbot.org</vendor> | ||
| <depends>com.intellij.modules.rider</depends> | ||
|
|
||
| <!-- Minimum and maximum build of IDE compatible with the plugin --> | ||
| <description> | ||
| <![CDATA[ | ||
| Generate <b>unit tests</b> with a single action! | ||
| <br /> | ||
| <br /> | ||
| The <b>UTBot</b> engine goes through your code instructions and generates regression tests. | ||
| <br /> | ||
| <br /> | ||
| The engine finds potential problems in your code: | ||
| <br /> | ||
| <br /> | ||
| <ul> | ||
| <li>exceptions</li> | ||
| <li>hangs</li> | ||
| <li>overflows</li> | ||
| <li>and even native crashes</li> | ||
| </ul> | ||
| <br /> | ||
| They are not a surprise for you anymore. The engine will find the problems and generate tests for them. | ||
| <br /> | ||
| <br /> | ||
| The engine carefully selects tests to maximize statement and branch coverage. Our credo is to <i>maximize test coverage and minimize tests number</i>. | ||
| <br /> | ||
| <br /> | ||
| You can <a href="http://utbot.org">try the engine online</a> without installation. | ||
| <br /> | ||
| <br /> | ||
| Got ideas? Let us know or become a contributor on our <a href="https://github.com/UnitTestBot/UTBotJava/blob/main/CONTRIBUTING.md">GitHub page</a> | ||
| <br /> | ||
| <br /> | ||
| Found an issue? Please, submit <a href="https://github.com/UnitTestBot/UTBotJava/issues">it here</a>. | ||
| ]]> | ||
| </description> | ||
| <change-notes> | ||
| <![CDATA[ | ||
| In this version we have implemented multiple features and improvements: | ||
| Automated unit test generation tool for .NET assemblies. | ||
| <ul> | ||
| <li>Java 11 support.</li> | ||
| <li>Smart Fuzzer significantly improves test generation results.</li> | ||
| <li>Generated tests have become even more human-readable and user-friendly.</li> | ||
| <li>We have enabled Mac OS X platform, give it a try.</li> | ||
| <li>The UnitTestBot engine generates SARIF reports.</li> | ||
| <li>We have polished plugin UX.</li> | ||
| <li>Mocking support is enhanced.</li> | ||
| <li>Java Streams, better Java Optional support, Java String support is improved, package-private constructors now are used for the test generation.</li> | ||
| <li>Generating ready-to-use test cases with method bodies and inputs</li> | ||
| <li>Maximizing branch coverage in regression suite while keeping the number of tests at minimum</li> | ||
| <li>Capable to find deeply hidden code defects and express them as tests</li> | ||
| <li>Applicable to LINQ syntax and complex generics</li> | ||
| <li>Supporting .NET Framework, .NET Core, .NET 5, and .NET 6</li> | ||
| <li>Powered by <a href="https://github.com/VSharp-team/VSharp">V#</a> – the custom symbolic execution engine</li> | ||
| </ul> | ||
| Discover everything mentioned above and much more in this release. | ||
| Try UnitTestBot .NET <a href="https://www.utbot.org/demo">online demo</a> to see how it generates tests for your code in real time. | ||
| ]]> | ||
| </change-notes> | ||
| </description> | ||
|
|
||
| </idea-plugin> | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
*capable of