Ejemplo n.º 1
0
        public void AreRotations_WhenCalled_ReturnsAreRotations(string str1, string str2, bool expectedResult)
        {
            var result = _stringUtils.AreRotations(str1, str2);

            Assert.That(result, Is.EqualTo(expectedResult));
        }