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

            var result = subject.ToDecimal128();

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

            var result = subject.ToDecimal128();

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