TestNG / JUnit-like plugin Follow
Hello All!
We have an inhouse test execution framework we are using for functional testing.
I'm investigating on how much effort it will take us to implement IDEA plugin, similar in functionality and UI to JUnit and TestNG plugins.
Is source code for these plugins available somewhere? Also, where is the best place to strat? I'm new to IDEA plugins development...
--
Igor
Please sign in to leave a comment.
Hello Igor,
Yes, the source code of TestNG and JUnit plugins is available:
http://svn.jetbrains.org/idea/Trunk/bundled/junit/
http://svn.jetbrains.org/idea/Trunk/bundled/testng/
However, a much simpler way to develop a test runner plugin for IDEA 8 is
to use the new smRunner API. Unfortunately the only open-source client of
this API which we currently have is written in Scala, but you can still try
to figure it out:
http://svn.jetbrains.org/idea/Trunk/scala/src/org/jetbrains/plugins/scala/testingSupport/scalaTest/
--
Dmitry Jemerov
Development Lead
JetBrains, Inc.
http://www.jetbrains.com/
"Develop with Pleasure!"
Dmitry, спасибо большое за быстрый ответ (и за ваш наркотически действующий IDE, раз уж на то пошло)!