1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/bigdecimal/test_bigmath.rb
mrkn bb6384761e * ext/bigdecimal/bigdecimal.c (BigMath_s_log): move BigMath.log from
bigdecimal/math.rb.
* ext/bigdecimal/lib/bigdecimal/math.rb: ditto.
* test/bigdecimal/test_bigdecimal.rb: move test for BigMath.log from
  test/bigdecimal/test_bigmath.rb.
* test/bigdecimal/test_bigmath.rb: ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-06-27 16:26:09 +00:00

63 lines
2.2 KiB
Ruby

require_relative "testbase"
require "bigdecimal/math"
class TestBigMath < Test::Unit::TestCase
include TestBigDecimalBase
include BigMath
N = 20
PINF = BigDecimal("+Infinity")
MINF = BigDecimal("-Infinity")
NAN = BigDecimal("NaN")
def test_const
assert_in_delta(Math::PI, PI(N))
assert_in_delta(Math::E, E(N))
end
def test_sqrt
assert_in_delta(2**0.5, sqrt(BigDecimal("2"), N))
assert_equal(10, sqrt(BigDecimal("100"), N))
assert_equal(0.0, sqrt(BigDecimal("0"), N))
assert_equal(0.0, sqrt(BigDecimal("-0"), N))
assert_raise(FloatDomainError) {sqrt(BigDecimal("-1.0"), N)}
assert_raise(FloatDomainError) {sqrt(NAN, N)}
assert_raise(FloatDomainError) {sqrt(PINF, N)}
end
def test_sin
assert_in_delta(0.0, sin(BigDecimal("0.0"), N))
assert_in_delta(Math.sqrt(2.0) / 2, sin(PI(N) / 4, N))
assert_in_delta(1.0, sin(PI(N) / 2, N))
assert_in_delta(0.0, sin(PI(N) * 2, N))
assert_in_delta(0.0, sin(PI(N), N))
assert_in_delta(-1.0, sin(PI(N) / -2, N))
assert_in_delta(0.0, sin(PI(N) * -2, N))
assert_in_delta(0.0, sin(-PI(N), N))
assert_in_delta(0.0, sin(PI(N) * 21, N))
assert_in_delta(0.0, sin(PI(N) * 30, N))
assert_in_delta(-1.0, sin(PI(N) * BigDecimal("301.5"), N))
end
def test_cos
assert_in_delta(1.0, cos(BigDecimal("0.0"), N))
assert_in_delta(Math.sqrt(2.0) / 2, cos(PI(N) / 4, N))
assert_in_delta(0.0, cos(PI(N) / 2, N))
assert_in_delta(1.0, cos(PI(N) * 2, N))
assert_in_delta(-1.0, cos(PI(N), N))
assert_in_delta(0.0, cos(PI(N) / -2, N))
assert_in_delta(1.0, cos(PI(N) * -2, N))
assert_in_delta(-1.0, cos(-PI(N), N))
assert_in_delta(-1.0, cos(PI(N) * 21, N))
assert_in_delta(1.0, cos(PI(N) * 30, N))
assert_in_delta(0.0, cos(PI(N) * BigDecimal("301.5"), N))
end
def test_atan
assert_equal(0.0, atan(BigDecimal("0.0"), N))
assert_in_delta(Math::PI/4, atan(BigDecimal("1.0"), N))
assert_in_delta(Math::PI/6, atan(sqrt(BigDecimal("3.0"), N) / 3, N))
assert_in_delta(Math::PI/2, atan(PINF, N))
assert_equal(BigDecimal("0.823840753418636291769355073102514088959345624027952954058347023122539489"),
atan(BigDecimal("1.08"), 72).round(72), '[ruby-dev:41257]')
end
end