Ejemplo n.º 1
0
        public void Zero_Should_Be_LimitMinError_0()
        {
            // Act
            var channelProp = new LimitMinErrorOnFirstRunProperty(0);

            // Assert
            AssertChannelProp(channelProp, "0");
        }
Ejemplo n.º 2
0
        public void Negative_Should_Be_LimitMinError_Value()
        {
            // Act
            var channelProp = new LimitMinErrorOnFirstRunProperty(-42);

            // Assert
            AssertChannelProp(channelProp, "-42");
        }
Ejemplo n.º 3
0
        public void ProvidedInt_Should_Be_LimitMinError_Value()
        {
            // Act
            var channelProp = new LimitMinErrorOnFirstRunProperty(42);

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