Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
6b96a8de
Commit
6b96a8de
authored
Jul 24, 2020
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #22535 from dreis2211
* pr/22535: Polish Closes gh-22535
parents
35a011d9
923474fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
EnvironmentPostProcessorApplicationListenerTests.java
...env/EnvironmentPostProcessorApplicationListenerTests.java
+4
-4
No files found.
spring-boot-project/spring-boot/src/test/java/org/springframework/boot/env/EnvironmentPostProcessorApplicationListenerTests.java
View file @
6b96a8de
...
@@ -64,22 +64,22 @@ class EnvironmentPostProcessorApplicationListenerTests {
...
@@ -64,22 +64,22 @@ class EnvironmentPostProcessorApplicationListenerTests {
}
}
@Test
@Test
void
support
e
EventTypeWhenApplicationEnvironmentPreparedEventReturnsTrue
()
{
void
support
s
EventTypeWhenApplicationEnvironmentPreparedEventReturnsTrue
()
{
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationEnvironmentPreparedEvent
.
class
)).
isTrue
();
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationEnvironmentPreparedEvent
.
class
)).
isTrue
();
}
}
@Test
@Test
void
support
e
EventTypeWhenApplicationPreparedEventReturnsTrue
()
{
void
support
s
EventTypeWhenApplicationPreparedEventReturnsTrue
()
{
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationPreparedEvent
.
class
)).
isTrue
();
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationPreparedEvent
.
class
)).
isTrue
();
}
}
@Test
@Test
void
support
e
EventTypeWhenApplicationFailedEventReturnsTrue
()
{
void
support
s
EventTypeWhenApplicationFailedEventReturnsTrue
()
{
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationFailedEvent
.
class
)).
isTrue
();
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationFailedEvent
.
class
)).
isTrue
();
}
}
@Test
@Test
void
support
e
EventTypeWhenOtherEventReturnsFalse
()
{
void
support
s
EventTypeWhenOtherEventReturnsFalse
()
{
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationStartingEvent
.
class
)).
isFalse
();
assertThat
(
this
.
listener
.
supportsEventType
(
ApplicationStartingEvent
.
class
)).
isFalse
();
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment