Class: Buildr::TestFramework::Base
Overview
Base class for all test frameworks, with common functionality. Extend and over-ride as you see fit.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Options for this test framework.
-
#task ⇒ Object
readonly
The test task we belong to.
Class Method Summary collapse
-
.applies_to?(project) ⇒ Boolean
Returns true if this framework applies to the current project.
-
.dependencies ⇒ Object
Returns a list of dependencies for this framework.
-
.to_sym ⇒ Object
The framework’s identifier (e.g. :testng).
Instance Method Summary collapse
-
#dependencies ⇒ Object
Returns a list of dependenices for this framework.
-
#initialize(test_task, options) ⇒ Base
constructor
Construct a new test framework with the specified options.
-
#run(tests, dependencies) ⇒ Object
TestTask calls this method to run the named (and only those) tests.
-
#tests(dependencies) ⇒ Object
TestTask calls this method to return a list of test names that can be run in this project.
Constructor Details
#initialize(test_task, options) ⇒ Base
Construct a new test framework with the specified options. Note that options may change before the framework is run.
87 88 89 90 |
# File 'lib/buildr/core/test.rb', line 87 def initialize(test_task, ) = @task = test_task end |
Instance Attribute Details
#options ⇒ Object (readonly)
Options for this test framework.
93 94 95 |
# File 'lib/buildr/core/test.rb', line 93 def end |
#task ⇒ Object (readonly)
The test task we belong to
95 96 97 |
# File 'lib/buildr/core/test.rb', line 95 def task @task end |
Class Method Details
.applies_to?(project) ⇒ Boolean
Returns true if this framework applies to the current project. For example, JUnit returns true if the tests are written in Java.
74 75 76 |
# File 'lib/buildr/core/test.rb', line 74 def applies_to?(project) raise 'Not implemented' end |
.dependencies ⇒ Object
Returns a list of dependencies for this framework. Default is an empty list, override to add dependencies.
80 81 82 |
# File 'lib/buildr/core/test.rb', line 80 def dependencies @dependencies ||= [] end |
.to_sym ⇒ Object
The framework’s identifier (e.g. :testng). Inferred from the class name.
68 69 70 |
# File 'lib/buildr/core/test.rb', line 68 def to_sym @symbol ||= name.split('::').last.downcase.to_sym end |
Instance Method Details
#dependencies ⇒ Object
Returns a list of dependenices for this framework. Defaults to calling the #dependencies method on the class.
99 100 101 |
# File 'lib/buildr/core/test.rb', line 99 def dependencies self.class.dependencies end |
#run(tests, dependencies) ⇒ Object
TestTask calls this method to run the named (and only those) tests. This method returns the list of tests that ran successfully.
116 117 118 |
# File 'lib/buildr/core/test.rb', line 116 def run(tests, dependencies) raise 'Not implemented' end |
#tests(dependencies) ⇒ Object
TestTask calls this method to return a list of test names that can be run in this project. It then applies the include/exclude patterns to arrive at the list of tests that will be run, and call the #run method with that list.
This method should return a list suitable for using with the #run method, but also suitable for the user to manage. For example, JUnit locates all the tests in the test.compile.target directory, and returns the class names, which are easier to work with than file names.
110 111 112 |
# File 'lib/buildr/core/test.rb', line 110 def tests(dependencies) raise 'Not implemented' end |