Ejemplo n.º 1
0
        public void ToDecimal_should_return_expected_result(int int32Value)
        {
            var subject = new BsonInt32(int32Value);

            var result = subject.ToDecimal();

            result.Should().Be((decimal)int32Value);
        }
        public void ToDecimal_should_return_expected_result(int int32Value)
        {
            var subject = new BsonInt32(int32Value);

            var result = subject.ToDecimal();

            result.Should().Be((decimal)int32Value);
        }