コード例 #1
0
ファイル: unitTest-kata.cs プロジェクト: fizzxz/CSharp-Katas
 public void Test_rot13ShouldOutputRot13Example()
 {
     Assert.AreEqual("ROT13 example.", Kata_Class.Rot13("EBG13 rknzcyr."));
 }
コード例 #2
0
ファイル: unitTest-kata.cs プロジェクト: fizzxz/CSharp-Katas
 public void Test_rot13ShouldOutputJoke()
 {
     Assert.AreEqual("In the elevators, the extrovert looks at the OTHER guy's shoes.", Kata_Class.Rot13("Va gur ryringbef, gur rkgebireg ybbxf ng gur BGURE thl'f fubrf."));
 }