如何运行相同的单元测试100次。 Ruby Rake

时间:2013-10-10 20:29:49

标签: ruby unit-testing rake testunit

我有一个测试用例,我需要通过运行100次来进行泛洪测试。我目前正在使用Rake :: TestTask来编译要运行的测试组。我希望能够告诉TestTask它应该运行相同的测试用例100次。这甚至可能还是有另一种方法来测试我的测试用例?

我的Rake :: TestTask目前看起来像这样

Rake::TestTask.new(:calendar) do |t|
  t.test_files = FileList['calendar/*calendar.rb']
end

在我看来,我希望有一个新的rake任务看起来像这样,只有这不起作用。

Rake::TestTask.new(:floodTest) do |t|
  #this is a task to flood test new tests to be added to the test suite
  files = []
  100.times do 
    files.push('calendar/003calendar.rb')
  end
  t.test_files = files
end

0 个答案:

没有答案