初期化で 2 つの異なる引数を使用して一連のテストを実行したいと考えています。私が今していることは次のとおりです。
require 'rubygems'
gem 'test-unit'
require 'test/unit'
require 'calc'
class My_test < Test::Unit::TestCase
class << self
def startup
$obj = Calc.new("test1")
end
end
def test_1
#testing $obj method 1
end
def test_2
#testing $obj method 2
end
.
.
.
end
ここで、「test2」、Calc.new("test2") などの異なる引数を使用して、すべてのテスト test_1...test_n を実行したいと考えています。
それを行う最良の方法は何ですか?なにか提案を。gem test-unit 2.5.x を使用しています