当我尝试对以下类进行单元测试时,出现以下舍入错误:
class TypeTotal
attr_reader :cr_amount, :dr_amount,
:cr_count, :dr_count
def initialize()
@cr_amount=Float(0); @dr_amount=Float(0)
@cr_count=0; @dr_count= 0
end
def increment(is_a_credit, amount, count=1)
case is_a_credit
when true
@cr_amount = Float(amount)+ Float(@cr_amount)
@cr_count += count
when false
@dr_amount = Float(amount)+ Float(@dr_amount)
@dr_count += count
end
end
end
单元测试:
require_relative 'total_type'
require 'test/unit'
class TestTotalType < Test::Unit::TestCase
#rounding error
def test_increment_count()
t = TypeTotal.new()
t.increment(false, 22.22, 2)
t.increment(false, 7.31, 3)
assert_equal(t.dr_amount, 29.53)
end
end
输出:
1) Failure:
test_increment_count(TestTotalType) [total_type_test.rb:10]:
<29.529999999999998> expected but was
<29.53>.
1 tests, 1 assertions, 1 failures, 0 errors, 0 skips
我使用浮点数是因为它在 Pick Ax 书中被推荐用于美元价值,因为它们不应该因回合错误而有效。
我ruby 1.9.2p290 (2011-07-09) [i386-mingw32]
在 Windows 7 64 位 Home 和 Windows XP 32 位 Pro 上运行。
我试过了
- 将我的变量转换为浮点数
- 删除 += 并拼出增量
行为出现随机:
- 12.22 + 7.31 作品
- 11.11 + 7.31 不起作用
- 11.111 + 7.31 作品
任何想法出了什么问题?