소스 검색

atbash-cipher: Update to canonical data

Add decode test case with description - decode all the letters
Rohit Gupta 9 년 전
부모
커밋
5067456e67
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      exercises/atbash-cipher/src/test/java/AtbashTest.java

+ 2
- 1
exercises/atbash-cipher/src/test/java/AtbashTest.java 파일 보기

53
             return Arrays.asList(new Object[][] {
53
             return Arrays.asList(new Object[][] {
54
                     { "vcvix rhn", "exercism" },
54
                     { "vcvix rhn", "exercism" },
55
                     { "zmlyh gzxov rhlug vmzhg vkkrm thglm v", "anobstacleisoftenasteppingstone" },
55
                     { "zmlyh gzxov rhlug vmzhg vkkrm thglm v", "anobstacleisoftenasteppingstone" },
56
-                    { "gvhgr mt123 gvhgr mt", "testing123testing" }
56
+                    { "gvhgr mt123 gvhgr mt", "testing123testing" },
57
+                    { "gsvjf rxpyi ldmul cqfnk hlevi gsvoz abwlt", "thequickbrownfoxjumpsoverthelazydog" }
57
             });
58
             });
58
         }
59
         }
59
 
60