JUnit 4を使用して、Androidのサンプルテストプロジェクトを2-3のJavaファイルのみで提供します。 これを実行しようとしていました。アンドロイドテストプロジェクトのJunit 4ランナー "Sample Project"
私のメインテストファイル。
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@RunWith(Suite.class)
@Suite.SuiteClasses({
SimpleMathTest.class
// add other classes here (comma separated)
})
public class TestSuite {
}
と私は
import org.junit.After;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.BeforeClass;
public class SimpleMathTest {
@BeforeClass
public static void setUpBeforeClass() throws Exception {
}
@AfterClass
public static void tearDownAfterClass() throws Exception {
}
@Before
public void setUp() throws Exception {
}
@After
public void tearDown() throws Exception {
}
}
でのJUnit 4としてではなく、実行エラーが表示の時に別のテストファイルを作っ:
の起動に失敗しましたSampleTest:テストに
私にいくつかの解決策を教えてください。
ありがとうございました