Пример #1
0
        public void ShouldEncrypt2Correctly(string input, string[] expected)
        {
            var cipher = new CaesarCipher();
            var result = cipher.Encrypt2(input, 1);

            result.Should().BeEquivalentTo(expected, opt => opt.WithStrictOrdering());
        }