"RobolectricTestRunner.class" not recognized in Android Studio

9.4k views Asked by At

I'm trying to use Robolectric to run unit tests but the Android Studio is not recognizing the class on:

@RunWith(RobolectricTestRunner.class)

Details:

classpath 'com.android.tools.build:gradle:3.0.0'

And I'm importing dependency:

testImplementation "org.robolectric:robolectric:3.5.1"

And:

android {
    testOptions {
        unitTests {
            includeAndroidResources = true
        }
    }
}

It simply does not appear option to import the class. Should I add any more dependencies I'm forgetting?

Error:

 error: package org.robolectric does not exist
 error: package org.robolectric does not exist
 error: package org.robolectric.shadows does not exist
 error: cannot find symbol class RobolectricTestRunner
 error: cannot find symbol variable Robolectric
 error: cannot find symbol variable ShadowApplication
6

There are 6 answers

6
Roberto Pinheiro On BEST ANSWER

I solved the issue just by putting the test class inside the src \ test folder instead of putting it in thesrc \ androidTest folder

1
Fakher On

RobolectricGradleTestRunner is deprecated since version 3 of Robolectric. Just use @RunWith(RobolectricTestRunner.class) Take a look at official documentation.

2
ManuQiao On

Usually there will be 2 kinds of tests 'androidTest' and 'test'.

If you add dependency like androidTestImplementation 'org.robolectric:robolectric:4.3.1', Robolectric package will only be imported in 'androidTest' classes.

If you add dependency like testImplementation 'org.robolectric:robolectric:4.3.1', they can only be imported in 'test' classes.

0
mobibob On

I followed most of the recommendations without any luck.
I then changed a dot (.) to double-colon (::)

was ...

@RunWith(RobolectricTestRunner.class)

changed to ...

@RunWith(RobolectricTestRunner::class)
0
moralejaSinCuentoNiProverbio On

I have to move (downgrade) the version from 4.13.2 to 3.3.2

0
Zeke On

If your test file is written in kotlin then use @RunWith(RobolectricTestRunner::class)