TimoleonLatinopoulos 8 лет назад
Родитель
Сommit
b3d0bf888c
1 измененных файлов: 5 добавлений и 5 удалений
  1. 5
    5
      exercises/transpose/src/test/java/TransposeTest.java

+ 5
- 5
exercises/transpose/src/test/java/TransposeTest.java Просмотреть файл

@@ -23,7 +23,7 @@ public class TransposeTest {
23 23
 
24 24
     @Ignore("Remove to run test")
25 25
     @Test
26
-    public void twoCharsInARow() {
26
+    public void twoCharactersInARow() {
27 27
         String input = "A1";
28 28
 
29 29
         String expected = "A" +
@@ -34,7 +34,7 @@ public class TransposeTest {
34 34
 
35 35
     @Ignore("Remove to run test")
36 36
     @Test
37
-    public void twoCharsInAColumn() {
37
+    public void twoCharactersInAColumn() {
38 38
         String input = "A\n" +
39 39
                        "1";
40 40
 
@@ -45,7 +45,7 @@ public class TransposeTest {
45 45
 
46 46
     @Ignore("Remove to run test")
47 47
     @Test
48
-    public void simpleMatrix() {
48
+    public void simple() {
49 49
         String input = "ABC\n" +
50 50
                        "123";
51 51
 
@@ -79,7 +79,7 @@ public class TransposeTest {
79 79
 
80 80
     @Ignore("Remove to run test")
81 81
     @Test
82
-    public void firstLineLongerThanSecond() {
82
+    public void firstLineLongerThanSecondLine() {
83 83
         String input = "The fourth line.\n" +
84 84
                        "The fifth line.";
85 85
 
@@ -105,7 +105,7 @@ public class TransposeTest {
105 105
 
106 106
     @Ignore("Remove to run test")
107 107
     @Test
108
-    public void secondLineLongerThanFirst() {
108
+    public void secondLineLongerThanFirstLine() {
109 109
         String input = "The first line.\n" +
110 110
                        "The second line.";
111 111