modify method name

This commit is contained in:
DOHA 2015-01-30 12:29:25 +02:00
parent aa989f6e4f
commit 9bfbe37a4f
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ public class JPAMultipleDBTest {
private ProductRepository productRepository;
@Test
public void whenCreateUser_thenCreated() {
public void whenCreatingUser_thenCreated() {
User user = new User();
user.setName("John");
user.setAge(20);
@ -39,7 +39,7 @@ public class JPAMultipleDBTest {
}
@Test
public void whenCreateProduct_thenCreated() {
public void whenCreatingProduct_thenCreated() {
Product product = new Product();
product.setName("Book");
product.setId(2);