Commit 923474fa authored by dreis2211's avatar dreis2211 Committed by Stephane Nicoll

Polish

See gh-22535
parent 35a011d9
...@@ -64,22 +64,22 @@ class EnvironmentPostProcessorApplicationListenerTests { ...@@ -64,22 +64,22 @@ class EnvironmentPostProcessorApplicationListenerTests {
} }
@Test @Test
void supporteEventTypeWhenApplicationEnvironmentPreparedEventReturnsTrue() { void supportsEventTypeWhenApplicationEnvironmentPreparedEventReturnsTrue() {
assertThat(this.listener.supportsEventType(ApplicationEnvironmentPreparedEvent.class)).isTrue(); assertThat(this.listener.supportsEventType(ApplicationEnvironmentPreparedEvent.class)).isTrue();
} }
@Test @Test
void supporteEventTypeWhenApplicationPreparedEventReturnsTrue() { void supportsEventTypeWhenApplicationPreparedEventReturnsTrue() {
assertThat(this.listener.supportsEventType(ApplicationPreparedEvent.class)).isTrue(); assertThat(this.listener.supportsEventType(ApplicationPreparedEvent.class)).isTrue();
} }
@Test @Test
void supporteEventTypeWhenApplicationFailedEventReturnsTrue() { void supportsEventTypeWhenApplicationFailedEventReturnsTrue() {
assertThat(this.listener.supportsEventType(ApplicationFailedEvent.class)).isTrue(); assertThat(this.listener.supportsEventType(ApplicationFailedEvent.class)).isTrue();
} }
@Test @Test
void supporteEventTypeWhenOtherEventReturnsFalse() { void supportsEventTypeWhenOtherEventReturnsFalse() {
assertThat(this.listener.supportsEventType(ApplicationStartingEvent.class)).isFalse(); assertThat(this.listener.supportsEventType(ApplicationStartingEvent.class)).isFalse();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment