Description
Generated tests for enum contain methods testing valueOf
To Reproduce
- Run Contest Estimator with method
com.google.common.base.CaseFormat.* and 300s time limit.
Actual behavior
Generated tests contain the following:
@Test//@org.junit.jupiter.api.DisplayName("valueOf: arg_0 = blank string -> throw IllegalArgumentException")publicvoidtestValueOfThrowsIAEWithBlankString() {
/* This test fails because executable under testing com.google.common.base.CaseFormat.valueOf produces Runtime exception java.lang.IllegalArgumentException: No enum constant com.google.common.base.CaseFormat. */CaseFormat.valueOf(" ");
}
@Test//@org.junit.jupiter.api.DisplayName("valueOf: arg_0 has special characters -> throw IllegalArgumentException")publicvoidtestValueOfThrowsIAEWithBlankString1() {
/* This test fails because executable under testing com.google.common.base.CaseFormat.valueOf produces Runtime exception java.lang.IllegalArgumentException: No enum constant com.google.common.base.CaseFormat. */CaseFormat.valueOf("\n\t\r");
}
Description
Generated tests for enum contain methods testing valueOf
To Reproduce
com.google.common.base.CaseFormat.*and 300s time limit.Actual behavior
Generated tests contain the following: