public void SuppressHeadingsSettingIsRecorded()
        {
            //Arrange
            var parameters = new ReportParameters<TestRec>();

            //Act
            parameters.SuppressHeadingRepetition();

            //Assert
            Assert.That(parameters.Details.SuppressHeadingRepetition, Is.True);
        }