Skip to content

Commit 337efb7

Browse files
committedApr 28, 2021
Polishing.
Original pull request: #618. See #583.
1 parent 3270594 commit 337efb7

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed
 

‎map/src/test/java/example/springdata/map/PersonRepositoryIntegrationTest.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,14 @@
2525
import org.springframework.boot.test.context.SpringBootTest;
2626
import org.springframework.data.map.repository.config.EnableMapRepositories;
2727

28-
2928
/**
3029
* Integration tests for {@link PersonRepository}.
3130
*
3231
* @author Oliver Gierke
32+
* @author Divya Srivastava
3333
*/
34-
3534
@SpringBootTest
36-
public class PersonRepositoryIntegrationTest {
35+
class PersonRepositoryIntegrationTest {
3736

3837
@SpringBootApplication
3938
@EnableMapRepositories
@@ -42,15 +41,15 @@ static class Config {}
4241
@Autowired PersonRepository repository;
4342

4443
@Test
45-
public void storesPerson() {
44+
void storesPerson() {
4645

4746
Person person = repository.save(new Person("Dave", "Matthews", 47));
4847

4948
assertThat(repository.findById(person.getId())).hasValue(person);
5049
}
5150

5251
@Test
53-
public void findsPersonByAge() {
52+
void findsPersonByAge() {
5453

5554
Person dave = repository.save(new Person("Dave", "Matthews", 47));
5655
Person oliver = repository.save(new Person("Oliver August", "Matthews", 7));

0 commit comments

Comments
 (0)
Please sign in to comment.