3

IntelliJ IDEA で JUnit 5 を学習しようとしています。テスト クラスを作成し、1 つのメソッドをテストしようとしました。メッセージは次のとおりです (3 行目を参照)。

INFO: Discovered TestEngines with IDs: [junit-jupiter]
Internal Error occurred.
org.junit.platform.commons.util.PreconditionViolationException:'DirectoryTest#directory2bytes' could not be resolved to a unique method
at org.junit.platform.engine.discovery.DiscoverySelectors.lambda$selectMethod$1(DiscoverySelectors.java:131)
at java.util.Optional.orElseThrow(Optional.java:290)
at org.junit.platform.engine.discovery.DiscoverySelectors.selectMethod(DiscoverySelectors.java:130)
at com.intellij.junit5.JUnit5TestRunnerUtil.createSelector(JUnit5TestRunnerUtil.java:111)
at com.intellij.junit5.JUnit5TestRunnerUtil.buildRequest(JUnit5TestRunnerUtil.java:86)
at com.intellij.junit5.JUnit5IdeaTestRunner.startRunnerWithArgs(JUnit5IdeaTestRunner.java:46)
at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:51)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:237)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147)

Process finished with exit code 254
Empty test suite.

メソッドを解決できない理由がわかりません: コンパイルされ、間違いなく存在します:

@Test
void directory2bytes( ) {
    testBytes = testDir.directory2bytes();
    for( int i = 0; i <= 10; i++) {
        System.out.print( testBytes[i] + " ")
    }
    System.out.println( );
}

そして、私はこれを定義しました:

@BeforeEach
void setUp( ) {
    testDir = new Directory( )
    testBytes = new byte[1000];
}

更新: IntelliJ IDEA を終了して再起動すると、インポートされたシンボル「junit」を解決できないというメッセージと、さまざまな注釈「@beforeEach」、「afterEach」、「Test」が表示されます。

更新 2: テスト クラスで欠落しているセミコロンを見つけて修正しましたが、変更はありません。注: テストしていないクラスの一部にコンパイル エラーがありますが、テストの実行構成を「ビルド、エラー チェックなし」に設定しています。これは正しいですか?JUnit 4 を使用して (別のクラス名で) 同じテストを作成しようとしましたが、それも機能しません。

エラー メッセージの最初の数行を次に示します。

Dec 07, 2016 9:51:41 AM org.junit.platform.launcher.core.ServiceLoaderTestEngineRegistry loadTestEngines
INFO: Discovered TestEngines with IDs: [junit-jupiter, junit-vintage]
Internal Error occurred.
org.junit.platform.commons.util.PreconditionViolationException: Could not load class with name: DirectoryTest
at org.junit.platform.engine.discovery.MethodSelector.lambda$lazyLoadJavaClass$0(MethodSelector.java:154)
4

3 に答える 3

4

関与していないクラスでのコンパイル エラーが問題の原因であったことは明らかです。Build without error check を指定したのに、テストが実行されません。

これらのエラーのほとんどは単純に「return ステートメントの欠落」であり、意味のない値 return を追加することで、当分の間排除しました。これは迷惑な時間の無駄でした。

私が言わなければならないのは、エラーメッセージは問題を追跡するのに非常に役に立たなかったということです!

于 2016-12-08T06:37:36.790 に答える
4

バグにより、M2 はパラメーターを使用したメソッドの選択をサポートしていません。これは M3 で修正されています。ただし、IntelliJ IDEA で M3 をすぐに使用するには、来週リリースされる 2016.3.1 が必要です。現在のバージョンの IntelliJ IDEA で M3 を使用する回避策があります。

于 2016-12-07T08:54:03.817 に答える
1

Test、、、などの注釈が付けられたメソッドはBeforeAfter宣言する必要がありますpublic。メソッドはデフォルトの可視性 (パッケージ保護とも呼ばれます) を使用していますが、これは JUnit からは見えないため、実行できません。それらを公開して、もう一度お試しください。

于 2016-12-07T00:48:51.057 に答える