class TestData::Calc
Public Class Methods
new()
click to toggle source
# File test-unit-3.3.4/test/test-data.rb, line 5 def initialize end
Public Instance Methods
plus(augend, addend)
click to toggle source
# File test-unit-3.3.4/test/test-data.rb, line 8 def plus(augend, addend) augend + addend end