We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c83c8f commit 0470fafCopy full SHA for 0470faf
src/test/java/CaesarShiftTest.java
@@ -4,7 +4,12 @@
4
5
class CaesarShiftTest {
6
@Test
7
+ public void caesarShift_convertCase_String() {
8
+ CaesarShift testCase = new CaesarShift();
9
+ assertEquals("A", testCase.encrypt("a"));
10
+ }
11
12
+ @Test
13
public void caesarShift_encryptChar_String(){
14
CaesarShift testType = new CaesarShift();
15
assertEquals("Y", testType.encrypt("Z"));
0 commit comments