Просмотр исходного кода

Merge pull request #1226 from TimoleonLatinopoulos/branch4

Changed test cases as per #1151
Sam Warner 8 лет назад
Родитель
Сommit
2698a945e0
Аккаунт пользователя с таким Email не найден
1 измененных файлов: 5 добавлений и 5 удалений
  1. 5
    5
      exercises/transpose/src/test/java/TransposeTest.java

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

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