Harmonize RuntimeHintsRegistrar implementations

Closes gh-28801
This commit is contained in:
Stephane Nicoll
2022-07-12 18:26:10 +02:00
parent 44d7e2775f
commit 2c92d7da8f
26 changed files with 76 additions and 121 deletions

View File

@@ -31,13 +31,13 @@ import org.springframework.util.ClassUtils;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link CoreAnnotationsRuntimeHintsRegistrar}.
* Tests for {@link CoreAnnotationsRuntimeHints}.
*
* @author Phillip Webb
*/
class CoreAnnotationsRuntimeHintsRegistrarTests {
class CoreAnnotationsRuntimeHintsTests {
private RuntimeHints hints = new RuntimeHints();
private final RuntimeHints hints = new RuntimeHints();
@BeforeEach
void setup() {

View File

@@ -31,11 +31,11 @@ import org.springframework.util.ClassUtils;
import static org.assertj.core.api.Assertions.assertThat;
/**
* Tests for {@link SpringFactoriesLoaderRuntimeHintsRegistrar}.
* Tests for {@link SpringFactoriesLoaderRuntimeHints}.
*
* @author Phillip Webb
*/
class SpringFactoriesLoaderRuntimeHintsRegistrarTests {
class SpringFactoriesLoaderRuntimeHintsTests {
private RuntimeHints hints;