class Buildr::MultiTest

A composite test framework that runs multiple other test frameworks.

e.g.,

test.using :multitest, :frameworks => [ Buildr::JUnit, Buildr::TestNG ], :options = {
  :junit => { :fork => true },
  :testng => { ... }
}

Attributes

frameworks[RW]

Public Instance Methods

tests(dependencies) click to toggle source
# File lib/buildr/java/tests.rb, line 385
def tests(dependencies)
  @frameworks.map { |f| f.tests(dependencies) }.flatten
end