Formatting cleanup

This commit is contained in:
alex-semenyuk
2015-08-09 19:13:51 +02:00
parent 759298a2bc
commit 02ba4a5605
5 changed files with 66 additions and 69 deletions

View File

@@ -37,7 +37,7 @@ public class DocumentQueryIntegrationTest {
public void tearDown() {
mongoTemplate.dropCollection(User.class);
}
@Test
public void givenUsersExist_whenFindingUsersByName_thenUsersAreFound() {
User user = new User();
@@ -103,7 +103,7 @@ public class DocumentQueryIntegrationTest {
List<User> users = mongoTemplate.find(query, User.class);
assertThat(users.size(), is(2));
}
@Test
public void givenUsersExist_whenFindingUserWithNameEndWithC_thenUsersAreFound() {
User user = new User();