コード例 #1
0
        public void ArePermutations_AnyStrings_ExpectedResult(string str1, string str2, bool expected)
        {
            var actual = StringExtensions.ArePermutations(str1, str2);

            Assert.That(actual == expected);
        }