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

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

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