Пример #1
0
        public void Zero_Should_Be_LimitMaxWarning_0()
        {
            // Act
            var channelProp = new LimitMaxWarningOnFirstRunProperty(0);

            // Assert
            AssertChannelProp(channelProp, "0");
        }
Пример #2
0
        public void Negative_Should_Be_LimitMaxWarning_Value()
        {
            // Act
            var channelProp = new LimitMaxWarningOnFirstRunProperty(-42);

            // Assert
            AssertChannelProp(channelProp, "-42");
        }
Пример #3
0
        public void ProvidedInt_Should_Be_LimitMaxWarning_Value()
        {
            // Act
            var channelProp = new LimitMaxWarningOnFirstRunProperty(42);

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