Description
The documentation is very misleading. It states, that the seed can be set individually for classes and methods, but neither configuration key is actually used:
ClassOrderer#RANDOM_SEED_PROPERTY_NAME
https://github.com/junit-team/junit5/blob/28869631bcecb6e6589ebc249b8e5f9c750b26e8/junit-jupiter-api/src/main/java/org/junit/jupiter/api/ClassOrderer.java#L78MethodOrderer#DEFAULT_ORDER_PROPERTY_NAME
https://github.com/junit-team/junit5/blob/413ccc0a699fdcfde4d0cef4620ae557e5c10bd5/junit-jupiter-api/src/main/java/org/junit/jupiter/api/MethodOrderer.java#L75
instead for both random seeds is used MethodOrderer.Random#RANDOM_SEED_PROPERTY_NAME
https://github.com/junit-team/junit5/blob/413ccc0a699fdcfde4d0cef4620ae557e5c10bd5/junit-jupiter-api/src/main/java/org/junit/jupiter/api/MethodOrderer.java#L297
This is also very inconsistent with the output of the tests which clearly suggests to set the respective seed to a specific value.
I do not know what is tha actual desired behaviour, so cannot provide a PR