Beispiel #1
0
        public void It_Should_Convert_To_An_Int_Using_Away_From_Zero(decimal input, int expected)
        {
            // Act
            var result = ValueCaster.ConvertToInt(input);

            // Assert
            Assert.Equal(expected, result);
        }