public async Task ValidateSectionAsync_WithAsyncSection_ShouldReturnSomething()
        {
            //Arrange
            _sut = new TestSectionedValidator <SomeModel>();
            _sut.Init(() => _sut.AsyncSection(Section, async m => {}));

            //Act
            var result = await _sut.ValidateSectionAsync(Section, _model);

            //Assert
            Assert.NotNull(result);
        }