Robolectric ile özel Görünümleri test etme
Robolectric 2.1.1 ile birim testleri çalıştırmaya çalışıyorum ve özel düzenleri şişirmesini sağlayamıyorum (örneğin, ViewPagerIndicator sınıfları). Bunun benim düzenim olduğunu varsayalım: <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> Bunu benim test sınıfım olarak kabul et: @RunWith(RobolectricTestRunner.class) public class TestRoboActivityTest { private TestRoboActivity mActivity; @Before …