Beispiel #1
0
        public void AreAnagram_ShouldReturnExpectedValue(string text1, string text2, bool expectedValue)
        {
            var result = Anagram.AreAnagram(text1, text2);

            Assert.Equal(expectedValue, result);
        }