Ejemplo n.º 1
0
        public void Integer_ShouldReturnCorrectRange()
        {
            // Arrange
            const int min = 10;
            const int max = 50;

            // Act
            var result = _sut.Integer(min, max);

            // Assert
            Assert.IsNotNull(result);
            result.ShouldBeInRange(min, max);
        }