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
7874de40
Commit
7874de40
authored
Aug 05, 2019
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore tests that were failing with Java 13
Closes gh-17607
parent
9a16a505
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
HazelcastAutoConfigurationClientTests.java
...gure/hazelcast/HazelcastAutoConfigurationClientTests.java
+0
-5
HazelcastAutoConfigurationServerTests.java
...gure/hazelcast/HazelcastAutoConfigurationServerTests.java
+0
-5
No files found.
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/hazelcast/HazelcastAutoConfigurationClientTests.java
View file @
7874de40
...
@@ -25,8 +25,6 @@ import org.assertj.core.api.Condition;
...
@@ -25,8 +25,6 @@ import org.assertj.core.api.Condition;
import
org.junit.jupiter.api.AfterAll
;
import
org.junit.jupiter.api.AfterAll
;
import
org.junit.jupiter.api.BeforeAll
;
import
org.junit.jupiter.api.BeforeAll
;
import
org.junit.jupiter.api.Test
;
import
org.junit.jupiter.api.Test
;
import
org.junit.jupiter.api.condition.DisabledOnJre
;
import
org.junit.jupiter.api.condition.JRE
;
import
org.springframework.beans.factory.BeanCreationException
;
import
org.springframework.beans.factory.BeanCreationException
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
...
@@ -75,7 +73,6 @@ class HazelcastAutoConfigurationClientTests {
...
@@ -75,7 +73,6 @@ class HazelcastAutoConfigurationClientTests {
}
}
@Test
@Test
@DisabledOnJre
(
JRE
.
JAVA_13
)
void
systemPropertyWithYaml
()
{
void
systemPropertyWithYaml
()
{
this
.
contextRunner
this
.
contextRunner
.
withSystemProperties
(
HazelcastClientConfiguration
.
CONFIG_SYSTEM_PROPERTY
.
withSystemProperties
(
HazelcastClientConfiguration
.
CONFIG_SYSTEM_PROPERTY
...
@@ -90,7 +87,6 @@ class HazelcastAutoConfigurationClientTests {
...
@@ -90,7 +87,6 @@ class HazelcastAutoConfigurationClientTests {
}
}
@Test
@Test
@DisabledOnJre
(
JRE
.
JAVA_13
)
void
explicitConfigFileWithYaml
()
{
void
explicitConfigFileWithYaml
()
{
this
.
contextRunner
this
.
contextRunner
.
withPropertyValues
(
"spring.hazelcast.config=org/springframework/boot/autoconfigure/"
.
withPropertyValues
(
"spring.hazelcast.config=org/springframework/boot/autoconfigure/"
...
@@ -107,7 +103,6 @@ class HazelcastAutoConfigurationClientTests {
...
@@ -107,7 +103,6 @@ class HazelcastAutoConfigurationClientTests {
}
}
@Test
@Test
@DisabledOnJre
(
JRE
.
JAVA_13
)
void
explicitConfigUrlWithYaml
()
{
void
explicitConfigUrlWithYaml
()
{
this
.
contextRunner
this
.
contextRunner
.
withPropertyValues
(
"spring.hazelcast.config=classpath:org/springframework/"
.
withPropertyValues
(
"spring.hazelcast.config=classpath:org/springframework/"
...
...
spring-boot-project/spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/hazelcast/HazelcastAutoConfigurationServerTests.java
View file @
7874de40
...
@@ -23,8 +23,6 @@ import com.hazelcast.config.QueueConfig;
...
@@ -23,8 +23,6 @@ import com.hazelcast.config.QueueConfig;
import
com.hazelcast.core.Hazelcast
;
import
com.hazelcast.core.Hazelcast
;
import
com.hazelcast.core.HazelcastInstance
;
import
com.hazelcast.core.HazelcastInstance
;
import
org.junit.jupiter.api.Test
;
import
org.junit.jupiter.api.Test
;
import
org.junit.jupiter.api.condition.DisabledOnJre
;
import
org.junit.jupiter.api.condition.JRE
;
import
org.springframework.beans.factory.BeanCreationException
;
import
org.springframework.beans.factory.BeanCreationException
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
...
@@ -70,7 +68,6 @@ class HazelcastAutoConfigurationServerTests {
...
@@ -70,7 +68,6 @@ class HazelcastAutoConfigurationServerTests {
}
}
@Test
@Test
@DisabledOnJre
(
JRE
.
JAVA_13
)
void
systemPropertyWithYaml
()
{
void
systemPropertyWithYaml
()
{
this
.
contextRunner
this
.
contextRunner
.
withSystemProperties
(
HazelcastServerConfiguration
.
CONFIG_SYSTEM_PROPERTY
.
withSystemProperties
(
HazelcastServerConfiguration
.
CONFIG_SYSTEM_PROPERTY
...
@@ -91,7 +88,6 @@ class HazelcastAutoConfigurationServerTests {
...
@@ -91,7 +88,6 @@ class HazelcastAutoConfigurationServerTests {
}
}
@Test
@Test
@DisabledOnJre
(
JRE
.
JAVA_13
)
void
explicitConfigFileWithYaml
()
{
void
explicitConfigFileWithYaml
()
{
this
.
contextRunner
this
.
contextRunner
.
withPropertyValues
(
"spring.hazelcast.config=org/springframework/boot/autoconfigure/hazelcast/"
.
withPropertyValues
(
"spring.hazelcast.config=org/springframework/boot/autoconfigure/hazelcast/"
...
@@ -110,7 +106,6 @@ class HazelcastAutoConfigurationServerTests {
...
@@ -110,7 +106,6 @@ class HazelcastAutoConfigurationServerTests {
}
}
@Test
@Test
@DisabledOnJre
(
JRE
.
JAVA_13
)
void
explicitConfigUrlWithYaml
()
{
void
explicitConfigUrlWithYaml
()
{
this
.
contextRunner
this
.
contextRunner
.
withPropertyValues
(
"spring.hazelcast.config=classpath:org/springframework/"
.
withPropertyValues
(
"spring.hazelcast.config=classpath:org/springframework/"
...
...
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