@Test
fun isEmpty_null_true(){
Assert.assertEquals(StringUtils.isEmpty(null),true)
}
public static boolean isEmpty(@Nullable String value) {
return (TextUtils.isEmpty(value) || value.trim().isEmpty());
}
All test methods except above one are working and passed. I am getting java.lang.NullPointerException
for this one. The implementation of StringUtils.isEmpty()
is also mentioned above. StringUtils
class is written in Java whereas test case file is written in Kotlin.
The complete solution, I have got-
Due to default values set in app/build.gradle, I was getting false returned from
TextUtils.isEmpty()
which was not expected by me.Reference - TextUtils.isEmpty(null) returns false
I cannot change the value in build.gradle file, so I needed the solution for my unit test method only. There is a way to provide implementation to
TextUtils.isEmpty()
method and get the real returned value.Reference - Need help to write a unit test using Mockito and JUnit4
I got the same problem with
android.graphics.Color.parseColor()
so above solution applies to all classes lies inandroid
package.