Exemplo n.º 1
0
        public void AreAnagrams2_WhenCalled_ReturnsAreAnagramsOrNot(string str1, string str2, bool expectedResult)
        {
            var result = _stringUtils.AreAnagrams2(str1, str2);

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