public void ShouldReturnCorrectEncodedTextForGivenInput(string input, string expected)
 {
     Assert.Equal(expected, Rot13Cipher.Rot13Encode(input));
 }
 public Rot13CipherTests()
 {
     this.rot13Cipher = new Rot13Cipher(new ValiatorAndConverter());
 }