Esempio n. 1
0
        public void TestRegexForPathFolder2(string test1)
        {
            test1 = string.Empty;
            var result = RegexForPathFolder.Solution(test1);

            result.Should().Be(string.Empty);
        }
Esempio n. 2
0
        public void TestRegexForPathFolder(string test1)
        {
            var result = RegexForPathFolder.Solution(test1);

            result.Should().Be("maybe");
        }