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

MatchesLocationReturnsFalseWhenMatchingExpectedLocationFolderWithoutForwardSlashAgainstActualLocationFileTest() private method

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

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

            actual.Should().BeFalse();
        }