Catalogue.Web.Controllers.Validator.validator_controller_tests.should_not_validate_location_with_invalid_uri C# (CSharp) Метод

should_not_validate_location_with_invalid_uri() приватный Метод

private should_not_validate_location_with_invalid_uri ( ) : void
Результат void
        public void should_not_validate_location_with_invalid_uri()
        {
            var c = new ValidatorController();
            var result = c.Post(new ValidatorInputModel { Value = "not/a/url" });

            result.Valid.Should().BeFalse();
        }