correct test method names as proper to our convention
This commit is contained in:
parent
a63f93f69a
commit
cd4e521a3b
@ -124,7 +124,7 @@ public class PrintingBinaryTreeModelUnitTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenBinaryTreeModelBalanced_whenPrintWithBinaryTreePrinter() {
|
public void givenBinaryTreeModelBalanced_whenPrintWithBinaryTreePrinter_thenProduceCorrectOutput() {
|
||||||
|
|
||||||
StringBuilder expected = new StringBuilder();
|
StringBuilder expected = new StringBuilder();
|
||||||
expected.append("root").append("\n");
|
expected.append("root").append("\n");
|
||||||
@ -144,7 +144,7 @@ public class PrintingBinaryTreeModelUnitTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenBinaryTreeModelLeftUnbalanced_whenPrintWithBinaryTreePrinter() {
|
public void givenBinaryTreeModelLeftUnbalanced_whenPrintWithBinaryTreePrinter_thenProduceCorrectOutput() {
|
||||||
|
|
||||||
StringBuilder expected = new StringBuilder();
|
StringBuilder expected = new StringBuilder();
|
||||||
expected.append("root").append("\n");
|
expected.append("root").append("\n");
|
||||||
@ -163,7 +163,7 @@ public class PrintingBinaryTreeModelUnitTest {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenBinaryTreeModelRightUnbalanced_whenPrintWithBinaryTreePrinter() {
|
public void givenBinaryTreeModelRightUnbalanced_whenPrintWithBinaryTreePrinter_thenProduceCorrectOutput() {
|
||||||
|
|
||||||
StringBuilder expected = new StringBuilder();
|
StringBuilder expected = new StringBuilder();
|
||||||
expected.append("root").append("\n");
|
expected.append("root").append("\n");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user