예제 #1
0
        public void Does_Execute_Rot13Service()
        {
            var response      = client.Rot13(TestString);
            var expectedValue = TestString.ToRot13();

            Assert.That(response, Is.EqualTo(expectedValue));
        }