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)