Module Buildr::TestFramework
In: lib/buildr/java/test_result.rb  (CVS)
lib/buildr/core/test.rb  (CVS)

The underlying test framework used by TestTask. To add a new test framework, extend TestFramework::Base and add your framework using:

  Buildr::TestFramework << MyFramework

Methods

add   frameworks   has?   select   select_from  

Classes and Modules

Module Buildr::TestFramework::JRubyBased
Class Buildr::TestFramework::Base
Class Buildr::TestFramework::Java
Class Buildr::TestFramework::TestResult

External Aliases

add -> <<

Public Class methods

Adds a test framework to the list of supported frameworks.

For example:

  Buildr::TestFramework << Buildr::JUnit

Returns a list of available test frameworks.

Returns true if the specified test framework exists.

Select a test framework by its name.

Identify which test framework applies for this project.

[Validate]