File tree 1 file changed +4
-5
lines changed
map/src/test/java/example/springdata/map
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 25
25
import org .springframework .boot .test .context .SpringBootTest ;
26
26
import org .springframework .data .map .repository .config .EnableMapRepositories ;
27
27
28
-
29
28
/**
30
29
* Integration tests for {@link PersonRepository}.
31
30
*
32
31
* @author Oliver Gierke
32
+ * @author Divya Srivastava
33
33
*/
34
-
35
34
@ SpringBootTest
36
- public class PersonRepositoryIntegrationTest {
35
+ class PersonRepositoryIntegrationTest {
37
36
38
37
@ SpringBootApplication
39
38
@ EnableMapRepositories
@@ -42,15 +41,15 @@ static class Config {}
42
41
@ Autowired PersonRepository repository ;
43
42
44
43
@ Test
45
- public void storesPerson () {
44
+ void storesPerson () {
46
45
47
46
Person person = repository .save (new Person ("Dave" , "Matthews" , 47 ));
48
47
49
48
assertThat (repository .findById (person .getId ())).hasValue (person );
50
49
}
51
50
52
51
@ Test
53
- public void findsPersonByAge () {
52
+ void findsPersonByAge () {
54
53
55
54
Person dave = repository .save (new Person ("Dave" , "Matthews" , 47 ));
56
55
Person oliver = repository .save (new Person ("Oliver August" , "Matthews" , 7 ));
You can’t perform that action at this time.
0 commit comments