2016-06-30 5 views
0

У меня есть простой класс robolectric, где я проверяю значение String моего textView. Тест просто проверяет, что наш TextView существует и имеет текст «Hello World!».junit.framework.AssertionFailedError: TextView содержит правильный текст

@Config(constants = BuildConfig.class, sdk = Build.VERSION_CODES.LOLLIPOP) 
@RunWith(RobolectricGradleTestRunner.class) 
public class MainActivityTest { 
private MainActivity activity; 


@Test 
public void validateTextViewContent() { 
    activity = Robolectric.setupActivity(MainActivity.class); 
    TextView tvHelloWorld = (TextView) activity.findViewById(R.id.tvHelloWorld); 

    assertNotNull("TextView could not be found", tvHelloWorld); 
    assertTrue("TextView contains correct text", 
      "Hello world!".equals(tvHelloWorld.getText().toString())); 
    } 
} 

Когда я запускаю его, я получаю следующую ошибку.

junit.framework.AssertionFailedError: TextView contains correct text 

at junit.framework.Assert.fail(Assert.java:57) 
at junit.framework.Assert.assertTrue(Assert.java:22) 
at testing.theo.androidtextviewrobo.MainActivityTest.validateTextViewContent(MainActivityTest.java:29) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:497) 
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50) 
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12) 
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47) 
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17) 
at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:251) 
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:188) 
at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:54) 
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290) 
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71) 
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288) 
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58) 
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268) 
at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:152) 
at org.junit.runners.ParentRunner.run(ParentRunner.java:363) 
at org.junit.runner.JUnitCore.run(JUnitCore.java:137) 
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69) 
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:234) 
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:74) 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
at java.lang.reflect.Method.invoke(Method.java:497) 
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144) 

Любые идеи?

Благодаря

+1

Первое, что вы можете использовать assertEquals вместо assertTrue. Но я предполагаю, что это может вам не помочь. – toshkinl

+0

Нет, он не работает ни с assertEquals. :( – Theo

+0

Попробуйте добавить только текст к этому TextView перед утверждением. tvHelloWorld.setText (""); – toshkinl

ответ

0

Исправлена ​​проблема !!! Я удалил assertTrue и добавили эту строку

assertEquals(tvHelloWorld.getText().toString(), "Hello World!");