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 …