Polishing

This commit is contained in:
Sam Brannen
2025-04-26 08:53:57 +02:00
parent 176b0b09bf
commit ef11a00c0b

View File

@@ -44,16 +44,16 @@ import static org.assertj.core.api.Assertions.assertThat;
*
* <h4>Expected Log Output</h4>
* <pre>
* INFO : org.springframework.test.context.junit4.spr4868.LifecycleBean - initializing
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - beforeAllTests()
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - setUp()
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - test1()
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - tearDown()
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - beforeAllTests()
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - setUp()
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - test2()
* INFO : org.springframework.test.context.junit4.spr4868.ExampleTest - tearDown()
* INFO : org.springframework.test.context.junit4.spr4868.LifecycleBean - destroying
* INFO : org.springframework.test.context.jsr250.LifecycleBean - initializing
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - beforeAllTests()
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - setUp()
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - test1()
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - tearDown()
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - beforeAllTests()
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - setUp()
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - test2()
* INFO : org.springframework.test.context.jsr250.Jsr250LifecycleTests - tearDown()
* INFO : org.springframework.test.context.jsr250.LifecycleBean - destroying
* </pre>
*
* @author Sam Brannen