Explorar el Código

Removed the commented part

Leon D'souza hace 9 años
padre
commit
015fcd7d17

+ 0
- 5
exercises/rotational-cipher/src/test/java/RotationalCipherTest.java Ver fichero

8
 
8
 
9
     private RotationalCipher rotationalCipher;
9
     private RotationalCipher rotationalCipher;
10
 
10
 
11
-    /*@Before
12
-    public void setUp() {
13
-        rotationalCipher = new RotationalCipher();
14
-    }
15
-    */
16
     @Test
11
     @Test
17
     public void rotateSingleCharacterBy1() {
12
     public void rotateSingleCharacterBy1() {
18
         rotationalCipher = new RotationalCipher(1);
13
         rotationalCipher = new RotationalCipher(1);