«robolectric» 태그된 질문


1
Robolectric으로 ViewPager (및 CursorLoader) 테스트
누구든지 Robolectric을 사용하여 다음 설정을 테스트하는 방법을 알고 있습니까? CursorLoader로로드 된 데이터 인 ViewPager를 포함하는 조각입니다. 아래 코드를 사용하면 CursorLoader가 뷰 페이저의 어댑터로 푸시되지 않습니다. 나는 await()전화에 갇혀있다 . EventsFragmentTest.java : @RunWith(CustomRobolectricTestRunner.class) public class EventsFragmentTest extends AbstractDbAndUiDriver { // which element in the view pager we are testing private static …

4
Android Gradle의 testCompile 및 androidTestCompile에 대해 혼동
나는 테스트 세계에 익숙하지 않고 Android 테스트 세계에 더 익숙합니다. 안드로이드 테스트에 도움이되는 Robolectric에 대한 연구를하는 동안 가장 혼란스러운 점이 있습니다. 때로는 웹 testCompile에서 Robolectric을 참조 할 때 다른 사람들이 androidTestCompile. 확실히 둘 다 유효 할 수 없습니까? 누군가 Robolectric을 사용할 때 사용되어야하는 것과 둘 다의 차이점을 설명 할 수 …

4
Robolectric으로 사용자 지정보기 테스트
Robolectric 2.1.1로 단위 테스트를 실행하려고하는데 사용자 지정 레이아웃 (예 : ViewPagerIndicator 클래스)을 확장 할 수 없습니다. 이것이 내 레이아웃이라고 가정합니다. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="test" android:id="@+id/test_test"/> <com.viewpagerindicator.CirclePageIndicator android:layout_width="fill_parent" android:layout_height="wrap_content"/> </LinearLayout> 이 내 테스트 클래스를 고려하십시오. @RunWith(RobolectricTestRunner.class) public class TestRoboActivityTest { private TestRoboActivity mActivity; @Before public void …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.