Running tests on Intellij: Class not found

ScalaIntellij IdeaGradle

Scala Problem Overview


I'm evaluating IntelliJ (13.0.2 133.696) and cannot get jUnit tests to run from within the IDE.

My project is a multi module gradle project and uses scala.

Test class is located under src/test/scala/xxx/xxxxx/xxx/xxxx/xxxxx and everytime i try to run from IDE i get the same error:

Class not found: "xxx.xxxxx.xxx.xxxx.xxxxx.AccountRepositoryTest"

Test class is nothing fancy, simple jUnit test:

@RunWith(classOf[SpringJUnit4ClassRunner])
@ContextConfiguration(classes = Array(classOf[DataConfig], classOf[SettingsConfig]))
class AccountRepositoryTest extends AssertionsForJUnit {

I've found a related question https://stackoverflow.com/questions/20734823/cannot-run-junit-tests-from-idea-13-0-ide-for-imported-gradle-projects , but the provided fix (upgrade to 13.0.2) does not work.

I've even tried upgrading to the latest EAP, still the same issue.

Scala Solutions


Solution 1 - Scala

I looked through some of these answers, fussed with Project Settings, tried a few things, etc. and nothing worked. (Full disclosure: I'm not trying to juggle Gradle here; I'm just using Maven, but I don't see what this has to do with Gradle.)

I'm using IDEA 14.

What I found to work, because it just simply seemed IntelliJ had lost its way, was this:

$ rm -rf .idea project-name.iml

Then relaunched IntelliJ and did File -> Open -> navigate to the root of my project, etc.--in short, just recreated my project.

IntelliJ got over it. I may have messed something up originally in this project as I had done plenty of refactoring both package- and class names and I had even changed the project name. (It was probably my fault it happened.)

Solution 2 - Scala

I had this same problem, and in my case the problem was due to the "Project compiler output" path being left blank in Project Settings.

Project Structure configuration screen

To fix it I created a classes directory in my project root, and set Project compiler output to the absolute path (use the button to browse).

Solution 3 - Scala

Go to Project Settings -> Project.

Fill in Project compiler output: ex. D:\repo\Project\out

Go to Module -> Paths

Make sure that:

output path is like D:\repo\Project\out\production

test output path like D:\repo\Project\out\test

Should work!

Solution 4 - Scala

Simply 'Build > Rebuild Project' worked for me.

Solution 5 - Scala

Check Run/Debug configuration for that test "Use classpath and SDK of module:" should point into your module.

In meantime you module must have a Scala facet and that class must be inside the "Test source Folders".

Solution 6 - Scala

Make sure your test class package and the class for which you are writing test case are not same. If both test case and the class is having the same package, the compiler will look in the src folder and ignores the test folder.

Solution 7 - Scala

I had the same problem. I changed a path in Module Settings -> Modules -> Paths -> Test output path to my directory for test classes bytecode (exclude output paths on). Now everything works!

Solution 8 - Scala

You can try to invalidate the cache and restart. That usually will resolve issues when you add new dependencies / classes.

Solution 9 - Scala

IDEA restart solved the issue for me.

Solution 10 - Scala

Just make shure the folder of your test file marked as a test folder in Intellij IDEA. That worked for me. If you have multiple directories with source files with the same name, add package to your class source file, if not present!

Solution 11 - Scala

I had the same problem, Intellij wasn't finding the Test output path. Running the regular application had no problems however.

For me, the fix was changing from inherited project compile paths, to using module compile output paths.

Project Settings -> Modules -> (Your module) -> Paths (tab)

Change the radio select button to "Use module compile output path". For me the autofilled suggestion worked, you may need to manually put in the correct Test Output Path if the autosuggestion doesn't work. Remember to apply the settings change.

Solution 12 - Scala

As of for gradle project X, deleting both:

  • X/build
  • X/out

and running tests again helped me resolve this issue.

Solution 13 - Scala

Try this in this order:

  • rebuild project (+strangely, select another app, reselect idea for context-switch, seems to force files reload ?!)
  • invalidate cache/restart idea
  • reimport project /create a new project

Solution 14 - Scala

modify the content in tag of the module's .iml file just as the following. It works for me.

<content url="file://$MODULE_DIR$">
  <sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
  <sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
  <excludeFolder url="file://$MODULE_DIR$/target" />
</content>

Solution 15 - Scala

Had the same problem, fixed it by recreating the project in a directory path that had no spaces, colons, periods or other special characters anywhere in the full path. Apparently IntelliJ can be finicky about the project path.

Solution 16 - Scala

My issue remained after building, clean and rebuild, closing and opening the project (using intellij), project compiler output was correct; in the end I just deleted the folder out from my project directory. Note that my issue was only on the newly added Junit calling a newly added method. The rest of Junits were working fine.

Solution 17 - Scala

For me it was that one test was failing and the error was misguiding.

So:

  1. I re-imported module in intellij as standalone project
  2. Run the test
  3. Fix test issues
  4. Run modules again and it started to work.

Solution 18 - Scala

tl;dr: Missing file extensions can cause this error.

details:

In my case the test classes were missing the .java extension. E.g. a file named UserTest instead of UserTest.java

  • Was hard to find, everything looked normal from within the IDE (apparently IntelliJ rather uses the file contents to display a corresponding symbol).
  • Was not an issue as long as I used mvn from command line (with the surfire plugin enabled in pom.xml) or a dedicated maven launcher configuration, but caused the initial error message when launching using IntelliJs test or coverage menu / buttons.
  • Everything working as expected as once I added the missing file endings.

Solution 19 - Scala

Just renaming the file to something different and back worked for me :)

Solution 20 - Scala

Another complete noob error from me: The test class was not public... In the code snipped @gerasalus provided, it seems to be the same issue.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiongerasalusView Question on Stackoverflow
Solution 1 - ScalaRuss BatemanView Answer on Stackoverflow
Solution 2 - Scalabradley.ayersView Answer on Stackoverflow
Solution 3 - ScalatreefolkView Answer on Stackoverflow
Solution 4 - ScalaeleuteronView Answer on Stackoverflow
Solution 5 - ScalaStasView Answer on Stackoverflow
Solution 6 - ScalaJetView Answer on Stackoverflow
Solution 7 - ScalaMaKriView Answer on Stackoverflow
Solution 8 - ScalaRvKView Answer on Stackoverflow
Solution 9 - ScalagreeneView Answer on Stackoverflow
Solution 10 - ScalaWebComerView Answer on Stackoverflow
Solution 11 - ScalaganView Answer on Stackoverflow
Solution 12 - ScalaEl ElView Answer on Stackoverflow
Solution 13 - ScalaShimbawaView Answer on Stackoverflow
Solution 14 - ScalaFrank HonView Answer on Stackoverflow
Solution 15 - ScalaClarkView Answer on Stackoverflow
Solution 16 - Scalauser666View Answer on Stackoverflow
Solution 17 - ScalaJohn TribeView Answer on Stackoverflow
Solution 18 - ScalaKQeuView Answer on Stackoverflow
Solution 19 - ScalaVadiraja KView Answer on Stackoverflow
Solution 20 - ScalascipperView Answer on Stackoverflow