public string Testcipher26(string message)
 {
     return(LabOfTransformations.cipher26(message));
 }
 public bool TesthigherVersion(string ver1, string ver2)
 {
     return(LabOfTransformations.higherVersion(ver1, ver2));
 }
 public string TeststolenLunch(string note)
 {
     return(LabOfTransformations.stolenLunch(note));
 }
 public string Testdecipher(string cipher)
 {
     return(LabOfTransformations.decipher(cipher));
 }
 public string TestcharacterParity(char symbol)
 {
     return(LabOfTransformations.characterParity(symbol));
 }
 public bool TestalphanumericLess(string s1, string s2)
 {
     return(LabOfTransformations.alphanumericLess(s1, s2));
 }
 public string TestreflectString(string inputString)
 {
     return(LabOfTransformations.reflectString(inputString));
 }
 public void TestnewNumeralSystem(ComplexTest <char, string[]> test)
 {
     Assert.AreEqual(test.ExpectedResult, LabOfTransformations.newNumeralSystem(test.Input));
 }