Split the JUnit 5 `OutputCapture` class into separate `OutputExtension` and `CapturedOutput` classes. The JUnit 5 callback methods are now contained only in the `OutputExtension` class so no longer pollute the public API that users will interact with. The `CapturedOutput` class has also been updated to capture System.err and System.out separately to allow distinct assertions if required. Closes gh-17029
== Spring Boot Quartz Sample This sample demonstrates the Quartz auto-configuration support. The sample uses Maven. It can be built and run from the command line: ---- $ mvn spring-boot:run ---- Console log will now show "Hello World!" from `SampleJob` every 2 seconds.