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

scrabble-score: remove unused import; clean up test formatting

Stuart Kent 9 лет назад
Родитель
Сommit
71c85f3bd9
1 измененных файлов: 1 добавлений и 3 удалений
  1. 1
    3
      exercises/scrabble-score/src/test/java/ScrabbleScoreTest.java

+ 1
- 3
exercises/scrabble-score/src/test/java/ScrabbleScoreTest.java Просмотреть файл

1
 import org.junit.Test;
1
 import org.junit.Test;
2
-import org.junit.Ignore;
3
 import org.junit.runner.RunWith;
2
 import org.junit.runner.RunWith;
4
 import org.junit.runners.Parameterized;
3
 import org.junit.runners.Parameterized;
5
 
4
 
34
         this.scrabbleScore = scrabbleScore;
33
         this.scrabbleScore = scrabbleScore;
35
     }
34
     }
36
 
35
 
37
-
38
     @Test
36
     @Test
39
     public void test() {
37
     public void test() {
40
         Scrabble scrabble = new Scrabble(scrabbleInput);
38
         Scrabble scrabble = new Scrabble(scrabbleInput);
41
-
42
         assertEquals(scrabbleScore, scrabble.getScore());
39
         assertEquals(scrabbleScore, scrabble.getScore());
43
     }
40
     }
41
+
44
 }
42
 }