java.lang.Object
org.junit.jupiter.api.DisplayNameGenerator.Standard
- All Implemented Interfaces:
DisplayNameGenerator
- Direct Known Subclasses:
DisplayNameGenerator.Simple
- Enclosing interface:
- DisplayNameGenerator
Standard
DisplayNameGenerator.
This implementation matches the standard display name generation behavior in place since JUnit Jupiter 5.0 was released.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.junit.jupiter.api.DisplayNameGenerator
DisplayNameGenerator.IndicativeSentences, DisplayNameGenerator.ReplaceUnderscores, DisplayNameGenerator.Simple, DisplayNameGenerator.Standard -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongenerateDisplayNameForClass(Class<?> testClass)Generate a display name for the given top-level orstaticnested test class.generateDisplayNameForMethod(Class<?> testClass, Method testMethod)Generate a display name for the given method.generateDisplayNameForNestedClass(Class<?> nestedClass)Generate a display name for the given@Nestedinner test class.
-
Constructor Details
-
Standard
public Standard()
-
-
Method Details
-
generateDisplayNameForClass
Description copied from interface:DisplayNameGeneratorGenerate a display name for the given top-level orstaticnested test class.- Specified by:
generateDisplayNameForClassin interfaceDisplayNameGenerator- Parameters:
testClass- the class to generate a name for; nevernull- Returns:
- the display name for the class; never
nullor blank
-
generateDisplayNameForNestedClass
Description copied from interface:DisplayNameGeneratorGenerate a display name for the given@Nestedinner test class.- Specified by:
generateDisplayNameForNestedClassin interfaceDisplayNameGenerator- Parameters:
nestedClass- the class to generate a name for; nevernull- Returns:
- the display name for the nested class; never
nullor blank
-
generateDisplayNameForMethod
Description copied from interface:DisplayNameGeneratorGenerate a display name for the given method.- Specified by:
generateDisplayNameForMethodin interfaceDisplayNameGenerator- Parameters:
testClass- the class the test method is invoked on; nevernulltestMethod- method to generate a display name for; nevernull- Returns:
- the display name for the test; never
nullor blank
-