3

単体テストで一度だけ呼び出されるコンストラクターを作成しようとしています

public class ArtistTest extends InstrumentationTestCase{
    private static final String TAG_NAME = "TESTING_SUITE";
    private TestingMusicDAO musicDAO;
    private List<Song> songs;
    private Instrumentation instr;
    MusicService musicService;

    public ArtistTest() throws Exception {
        super();       
        instr = this.getInstrumentation();
        Log.d(TAG_NAME, "Setting up testing songs");
        musicDAO = new TestingMusicDAO(instr.getContext());
        musicService = new MusicServiceImpl(musicDAO);
        musicDAO.getAllSongsFromFile();
        songs = musicDAO.getAllSongs();
        for(Song song : songs)
            Log.d( TAG_NAME, song.toString() );
    }

しかし、ファイルを Android Junit テストとして実行すると、コンストラクター エラーで例外が発生します。また、ここにスタックトレースがあります

 junit.framework.AssertionFailedError: Exception in constructor: test0      (java.lang.NullPointerException
 at com.intellimec.ilane.ice.mediaservices.ArtistTest.<init>(ArtistTest.java:17)
 at java.lang.reflect.Constructor.constructNative(Native Method)
 at java.lang.reflect.Constructor.newInstance(Constructor.java:417)
 at junit.runner.BaseTestRunner.getTest(BaseTestRunner.java:118)
 at android.test.AndroidTestRunner.getTest(AndroidTestRunner.java:148)
 at android.test.AndroidTestRunner.setTestClassName(AndroidTestRunner.java:56)
 at   android.test.suitebuilder.TestSuiteBuilder.addTestClassByName(TestSuiteBuilder.java:80)
 at android.test.InstrumentationTestRunner.parseTestClass(InstrumentationTestRunner.java:444)
 at android.test.InstrumentationTestRunner.parseTestClasses(InstrumentationTestRunner.java:425)
 at android.test.InstrumentationTestRunner.onCreate(InstrumentationTestRunner.java:370) 
 at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4382)
 at android.app.ActivityThread.access$1300(ActivityThread.java:141)
 at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1294)
 at android.os.Handler.dispatchMessage(Handler.java:99)
 at android.os.Looper.loop(Looper.java:137)
 at android.app.ActivityThread.main(ActivityThread.java:5039)
 at java.lang.reflect.Method.invokeNative(Native Method)
 at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
 at dalvik.system.NativeStart.main(Native Method)
 )
 at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:190)
 at android.test.AndroidTestRunner.runTest(AndroidTestRunner.java:175)
 at android.test.InstrumentationTestRunner.onStart(InstrumentationTestRunner.java:555)
 at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1661)
4

4 に答える 4

2

代わりに、テスト実行中に 1 回だけ実行する必要があるコードを静的初期化子に入れます。クラスがロードされたときに一度だけ実行する必要があります (このクラスを再利用しないでください)。

于 2013-02-06T19:06:59.417 に答える
0

テスト ケースに具体的なコンストラクターを使用しないでください。

junit パラダイムに従うことをお勧めします。

これらの注釈を使用して、クラスごとに 1 回初期化する必要がある値を初期化します。つまり、 @BeforeClass と @AfterClass クラスレベルで初期化する必要があるものは何でも定義するようにしてください

@BeforeClass
public static void setUpBeforeClass() throws Exception {
 //per class attributes initialized here
   instr = this.getInstrumentation();
    Log.d(TAG_NAME, "Setting up testing songs");
    musicDAO = new TestingMusicDAO(instr.getContext());
    musicService = new MusicServiceImpl(musicDAO);
    musicDAO.getAllSongsFromFile();
    songs = musicDAO.getAllSongs();
    for(Song song : songs)
        Log.d( TAG_NAME, song.toString() );
}

@AfterClass
public static void tearDownAfterClass() throws Exception {
 //per class attributes destroyed here
}

メソッドごとに必要な初期化については、次の注釈を使用して、テストメソッドごとにこれらの値を初期化するようにju​​nitに指示します

@Before
public void setUp() throws Exception {
 //per method attributes initialized here

}

@After
public void tearDown() throws Exception {
 //per method attributes destroyed here
}

アノテーション @Test を使用して、メソッドをテスト メソッドとして指定します。

すなわち

@Test
public void testMethodx() {
}
于 2013-02-06T20:10:02.520 に答える
0

独自の setUp() メソッドを記述して、「Music」オブジェクトを一度初期化することもできます 詳細については、このページを参照してください http://www.methodsandtools.com/tools/tools.php?junit

于 2013-02-06T19:17:49.430 に答える
0

は何ArtistTest.java:17ですか?

getInstrumentationを返すだけの場合private field instr、ここでの呼び出しで null が返され、後で NPE が発生します

于 2013-02-06T19:26:12.910 に答える