public void Zero_Should_Be_LimitMaxError_0()
        {
            // Act
            var channelProp = new LimitMaxErrorOnFirstRunProperty(0);

            // Assert
            AssertChannelProp(channelProp, "0");
        }
        public void Negative_Should_Be_LimitMaxError_Value()
        {
            // Act
            var channelProp = new LimitMaxErrorOnFirstRunProperty(-42);

            // Assert
            AssertChannelProp(channelProp, "-42");
        }
        public void ProvidedInt_Should_Be_LimitMaxError_Value()
        {
            // Act
            var channelProp = new LimitMaxErrorOnFirstRunProperty(42);

            // Assert
            AssertChannelProp(channelProp, "42");
        }