実現したいこと
Gradleのテストが正常に行われないのですが理由が分かりません。
発生している問題・分からないこと
IllegalArgumentExceptionがスローされていないといった内容のエラーが出ます。
Junit5単体のテストでは正常に行われました。しかし、Gradle上で実行するとエラーになります。
エラーメッセージ
error
1org.opentest4j.AssertionFailedError: Expected java.lang.IllegalArgumentException to be thrown, but nothing was thrown.
該当のソースコード
Bank.java
1import static org.junit.jupiter.api.Assertions.*; 2 3import org.junit.jupiter.api.Test; 4 5class BankTest { 6 // ①正常系:「ミヤビ」をセットできるか 7 @Test 8 public void setName() { 9 Bank b = new Bank(); 10 String expectedName = "ミヤビ"; 11 b.setName(expectedName); 12 13 // 正常系の場合、セットした名前が正しく反映されているかをアサーション 14 assertEquals(expectedName, b.getName()); 15 } 16 17 // ②異常系:nullをセットしようとしたら例外が起きるべき 18 @Test public void setNameWithNull() { 19 Bank b = new Bank(); 20 assertThrows(NullPointerException.class, () -> {b.setName(null);}); 21 } 22 23 // ③異常系:2文字をセットしようとしたら例外が起こるべき 24 @Test 25 public void throwsExceptionWithTwoCharName() { 26 Bank b = new Bank(); 27 assertThrows(IllegalArgumentException.class, () -> {b.setName("ミヤ");}); 28 } 29 30}
BankTest.java
1import static org.junit.jupiter.api.Assertions.*; 2 3import org.junit.jupiter.api.Test; 4 5class BankTest { 6 // ①正常系:「ミヤビ」をセットできるか 7 @Test 8 public void setName() { 9 Bank b = new Bank(); 10 String expectedName = "ミヤビ"; 11 b.setName(expectedName); 12 13 // 正常系の場合、セットした名前が正しく反映されているかをアサーション 14 assertEquals(expectedName, b.getName()); 15 } 16 17 // ②異常系:nullをセットしようとしたら例外が起きるべき 18 @Test public void setNameWithNull() { 19 Bank b = new Bank(); 20 assertThrows(NullPointerException.class, () -> {b.setName(null);}); 21 } 22 23 // ③異常系:2文字をセットしようとしたら例外が起こるべき 24 @Test 25 public void throwsExceptionWithTwoCharName() { 26 Bank b = new Bank(); 27 assertThrows(IllegalArgumentException.class, () -> {b.setName("ミヤ");}); 28 } 29 30}
build.gradle
1/* 2 * This file was generated by the Gradle 'init' task. 3 * 4 * This generated file contains a sample Java library project to get you started. 5 * For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle 6 * User Manual available at https://docs.gradle.org/7.6.4/userguide/building_java_projects.html 7 */ 8 9plugins { 10 // Apply the java-library plugin for API and implementation separation. 11 id 'java-library' 12} 13 14repositories { 15 // Use Maven Central for resolving dependencies. 16 mavenCentral() 17} 18 19dependencies { 20 // Use JUnit Jupiter for testing. 21 testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2' 22 23 // This dependency is exported to consumers, that is to say found on their compile classpath. 24 api 'org.apache.commons:commons-math3:3.6.1' 25 26 // This dependency is used internally, and not exposed to consumers on their own compile classpath. 27 implementation 'com.google.guava:guava:32.1.3-jre' 28} 29 30tasks.named('test') { 31 // Use JUnit Platform for unit tests. 32 useJUnitPlatform() 33}
試したこと・調べたこと
上記の詳細・結果
eclipseのクリーン起動やキャッシュのクリア、プロジェクトを作成しなおしたりしました。また、Junit5のバージョンは5.10.2、Gradleは7.6.4で、いずれも最新のものを利用しています。
補足
特になし
0 コメント