現在のプロジェクトで Robolectric テストを実行して動作させようとしていますが、うまくいきません。私の好みは、これらを Android Studio 1.1.0+ 内で実行することです。これは私のプロジェクト構造です:
ここに私のテストがあります:
import android.widget.Button;
import com.mycompany.android.app.R;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.robolectric.Robolectric;
import org.robolectric.RobolectricTestRunner;
import org.robolectric.annotation.Config;
import static org.junit.Assert.assertNotNull;
@Config(manifest = "AndroidManifest.xml")
@RunWith(RobolectricTestRunner.class)
public class SplashActivityTest {
private SplashActivity splashActivity;
@Before
public void setup() {
splashActivity = Robolectric.buildActivity(SplashActivity.class).create().start().resume().get();
}
@Test
public void shouldNotBeNull() {
Button signUpButton = (Button) splashActivity.findViewById(R.id.sign_up_button);
assertNotNull(signUpButton);
Button loginButton = (Button) splashActivity.findViewById(R.id.login_button);
assertNotNull(loginButton);
}
}
マニフェストへのパスを変更してフレームワークにテストを見つけさせるために何をしようとしても、それを見つけることができません-WARNING: No manifest file found at ./AndroidManifest.xml.Falling back to the Android OS resources only.
メッセージまたはAPI Level XX is not supported - Sorry!
メッセージを取得します。最後に、これがテストの実行時に次のエラーが発生する理由だと思います。
android.content.res.Resources$NotFoundException: unknown resource 2130903074
私は実験的なオプションをオンにしており、適切な Gradle プラグインを構成しています (単体テストは正常に動作します) が、インストルメンテーション テストを実行するために何が欠けているのかわかりません。
アプリレベルのビルド ファイル:
apply plugin: 'org.robolectric'
testCompile 'junit:junit:4.12'
testCompile 'org.mockito:mockito-core:1.9.5'
testCompile 'org.robolectric:robolectric:2.4'
testCompile 'org.hamcrest:hamcrest-core:1.1'
testCompile 'org.hamcrest:hamcrest-library:1.1'
testCompile 'org.hamcrest:hamcrest-integration:1.1'
最上位ビルド ファイル:
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
classpath 'org.robolectric:robolectric-gradle-plugin:1.0.0'
}