コード例 #1
0
ファイル: Rot13Test.cs プロジェクト: SoftwareDojo/Katas
        public void Decode_offset_1(string text, string expected)
        {
            // arrange
            var rot13 = new Rot13(1);

            // act
            string actual = rot13.Decode(text);

            // assert
            Assert.Equal(expected, actual);
        }