public void Should_TryGetErrorsCapacityForPath_Be_Empty()
        {
            Action action = () => _ = new DisabledCapacityInfo().TryGetErrorsCapacityForPath("test", out _);

            action.Should().ThrowExactly <InvalidOperationException>();
        }
        public void Should_ErrorsPathsCapacity_Be_Zero()
        {
            Action action = () => _ = new DisabledCapacityInfo().ErrorsPathsCapacity;

            action.Should().ThrowExactly <InvalidOperationException>();
        }