File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
modules/junit-jupiter/src/main/java/org/testcontainers/junit/jupiter Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 88 * discuss with the authors on an issue ticket prior to doing anything big
99 * follow the style, naming and structure conventions of the rest of the project
1010 * make commits atomic and easy to merge
11- * verify all tests are passing. Build the project with `./gradlew check` to do this.
12- **N.B.** Gradle's Build Cache is enabled by default, but you can add `--no-build-cache` flag to disable it.
11+ * verify all tests are passing. Build the project with `./gradlew check` to do this
12+
13+ **PS:** Make sure Docker is running locally and you have the lombok plugin installed in your IDE
14+
15+ **N.B.** Gradle's Build Cache is enabled by default, but you can add `--no-build-cache` flag to disable it.
16+
Original file line number Diff line number Diff line change @@ -95,7 +95,7 @@ private static Predicate<Field> isContainer() {
9595 boolean isStartable = Startable .class .isAssignableFrom (field .getType ());
9696
9797 if (!isStartable ) {
98- throw new ExtensionConfigurationException ("Annotation is only supported for Startable types" );
98+ throw new ExtensionConfigurationException (String . format ( "FieldName: %s does not implement Startable" , field . getName ()) );
9999 }
100100 return true ;
101101 }
You can’t perform that action at this time.
0 commit comments