Reputation: 96421
Say you have ClassA
, ClassATest
and ClassB
. Assume that ClassB
has some compilation problems.
Is it possible to run tests in ClassATest
without IndelliJ complaining about compilation issues in ClassB
.
Obviously, lets assume that there is no dependencies between ClassB
and `ClassA'
Upvotes: 0
Views: 74
Reputation: 10393
Edit the Run configuration for the test case and remove the "Make" entry in the "Before launch" table. This lets you run a test case when your project does not compile.
Upvotes: 2