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

MatchesLocationReturnsTrueWhenActualLocationLacksForwardSlashTest() private method

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

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

            actual.Should().BeTrue();
        }