mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
19 lines
383 B
Ruby
19 lines
383 B
Ruby
|
# Author:: Nathaniel Talbott.
|
||
|
# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
|
||
|
# License:: Ruby license.
|
||
|
|
||
|
require 'test/unit'
|
||
|
require 'adder'
|
||
|
|
||
|
class TC_Adder < Test::Unit::TestCase
|
||
|
def setup
|
||
|
@adder = Adder.new(5)
|
||
|
end
|
||
|
def test_add
|
||
|
assert_equal(7, @adder.add(2), "Should have added correctly")
|
||
|
end
|
||
|
def teardown
|
||
|
@adder = nil
|
||
|
end
|
||
|
end
|