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
b11053af
Commit
b11053af
authored
Jul 04, 2017
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Align with breaking API changes in Spring Data MongoDB
parent
f2e77e46
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
MongoDataAutoConfigurationTests.java
...configure/data/mongo/MongoDataAutoConfigurationTests.java
+3
-8
No files found.
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/data/mongo/MongoDataAutoConfigurationTests.java
View file @
b11053af
...
...
@@ -18,7 +18,6 @@ package org.springframework.boot.autoconfigure.data.mongo;
import
java.time.LocalDateTime
;
import
java.util.Arrays
;
import
java.util.Optional
;
import
java.util.Set
;
import
com.mongodb.Mongo
;
...
...
@@ -166,13 +165,9 @@ public class MongoDataAutoConfigurationTests {
MongoDataAutoConfiguration
.
class
);
this
.
context
.
refresh
();
MongoMappingContext
context
=
this
.
context
.
getBean
(
MongoMappingContext
.
class
);
Optional
<
BasicMongoPersistentEntity
<?>>
entity
=
context
.
getPersistentEntity
(
Sample
.
class
);
assertThat
(
entity
).
isPresent
();
Optional
<
MongoPersistentProperty
>
dateProperty
=
entity
.
get
()
.
getPersistentProperty
(
"date"
);
assertThat
(
dateProperty
).
isPresent
();
assertThat
(
dateProperty
.
get
().
isEntity
()).
isFalse
();
BasicMongoPersistentEntity
<?>
entity
=
context
.
getPersistentEntity
(
Sample
.
class
);
MongoPersistentProperty
dateProperty
=
entity
.
getPersistentProperty
(
"date"
);
assertThat
(
dateProperty
.
isEntity
()).
isFalse
();
}
public
void
testFieldNamingStrategy
(
String
strategy
,
...
...
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