public void It_should_have_accumulated_all_failure_messages()
        {
            SList <string> failNel = mergedChecks.ProjectFailure().Get();

            failNel.Length.Should().Be(2);
            failNel.Should().Contain("Some problem 1");
            failNel.Should().Contain("Some problem 2");
        }