for example, in ant i would use something like
fileset dir="src/tests" includes="${test.includes}" excludes="${test.excludes}"/>
in the junit task. there is a Test Runner Parameters field in the Run Configurations in Intellij, but i cant ...
Documentation on Intellij plugin development is scarce. If you have written any Intellij plugin, how did you write tests for plugin? Any pointer to documentation or source code is appreciated.
I open maven project in Idea.
I store my files which are used for unit testing in folder \src\test\resources
But the issue is files which are used for testing are java-files.
Despite 'mvn package' ...
I use IntelliJ IDEA and was thinking about how nice it would be to be able to pop up a context where I could write, compile and run some simple core ...
I have a package with five classes. Each class has 100% code coverage, 100% line coverage bar one (which has 98% line coverage). As a result the package code coverage is ...