I have the following dependencies in my build.gradle
file
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.9.5'
And my test class EmailValidatorTest
has the following code
@Test
public void emailValidator_simpleEmail_returnsTrue(){
assertThat(EmailValidator.isValidEmail("[email protected]"),is(true))
}
But i get the error as Cannot resolve symbol assertThat
. I get only assert
object .I'm currently working on a sample from Android Developers
i,e : https://github.com/googlesamples/android-testing/tree/master/unit/BasicSample
.
Make sure you imported assertThat.
public static <T> void assertThat(T actual,
org.hamcrest.Matcher<T> matcher)
import static org.hamcrest.MatcherAssert.assertThat;
Then Clean-Rebuild-Run .
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With