Headless.UnitTests.RelaxedFolderLocationValidatorTests.MatchesLocationReturnsFalseWhenMatchingActualLocationFolderWithoutForwardSlashAgainstExpectedLocationFileTest C# (CSharp) Method

MatchesLocationReturnsFalseWhenMatchingActualLocationFolderWithoutForwardSlashAgainstExpectedLocationFileTest() private method

        public void MatchesLocationReturnsFalseWhenMatchingActualLocationFolderWithoutForwardSlashAgainstExpectedLocationFileTest()
        {
            var expectedLocation = new Uri("http://www.test.com/some/time/test.txt");
            var target = new RelaxedFolderLocationValidator();
            var actualLocation = new Uri("http://www.test.com/some/time");

            var actual = target.Matches(actualLocation, expectedLocation);

            actual.Should().BeFalse();
        }