tests renaming

This commit is contained in:
Marcos 2017-12-09 11:20:14 +01:00
parent 9f3ce63cd9
commit 7c82545377
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ import org.junit.Test;
public class BinaryTreeTest {
@Test
public void givenABinaryTree_WhenAddElements_ThenTreeNotEmpty() {
public void givenABinaryTree_WhenAddingElements_ThenTreeNotEmpty() {
BinaryTree bt = new BinaryTree();
@ -24,7 +24,7 @@ public class BinaryTreeTest {
}
@Test
public void givenABinaryTree_WhenAddElements_ThenTreeContainsThoseElements() {
public void givenABinaryTree_WhenAddingElements_ThenTreeContainsThoseElements() {
BinaryTree bt = new BinaryTree();