public void Zero_Should_Be_LimitMinWarning_0()
        {
            // Act
            var channelProp = new LimitMinWarningOnFirstRunProperty(0);

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

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

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