Skip to content

Commit c82b50d

Browse files
committed
Correct plugin description in plugin.xml
1 parent 25b6ab4 commit c82b50d

File tree

1 file changed

+0
-2
lines changed
  • utbot-intellij/src/main/resources/META-INF

1 file changed

+0
-2
lines changed

utbot-intellij/src/main/resources/META-INF/plugin.xml

-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@
5656
<li>generating <a href="https://github.com/microsoft/sarif-tutorials/blob/main/README.md">SARIF</a> reports</li>
5757
<li>innovative symbolic execution engine combined with a smart fuzzing platform</li>
5858
</ul>
59-
UnitTestBot supports the latest JDKs, JUnit 4, JUnit 5, TestNG, Mockito and is suitable for all popular operational systems.
60-
<br/>
6159
Try <a href="https://www.utbot.org/demo/?language=Java&source=public%20class%20Recursion%20%7B%0A%0A%20%20public%20int%20fib(int%20n)%20%7B%0A%20%20%20%20if%20(n%20%3C%200)%20throw%20new%20IllegalArgumentException()%3B%0A%20%20%20%20if%20(n%20%3D%3D%200)%20return%200%3B%0A%20%20%20%20if%20(n%20%3D%3D%201)%20return%201%3B%0A%20%20%20%20%0A%20%20%20%20return%20fib(n%20-%201)%20%2B%20fib(n%20-%202)%3B%0A%20%20%7D%0A%7D%0A">UnitTestBot online demo</a> to see how it generates tests for your code in real time.
6260
<br/>
6361
Contribute to UnitTestBot via <a href="https://github.com/UnitTestBot/UTBotJava/blob/main/CONTRIBUTING.md">GitHub</a>.

0 commit comments

Comments
 (0)