In: |
test/unit/testsuite.rb
|
Parent: | Object |
A collection of tests which can be run.
Note: It is easy to confuse a TestSuite instance with something that has a static suite method; I know because I have trouble keeping them straight. Think of something that has a suite method as simply providing a way to get a meaningful TestSuite instance.
STARTED | = | name + "::STARTED" |
FINISHED | = | name + "::FINISHED" |
name | [R] | |
tests | [R] |
Adds the test to the suite.
# File test/unit/testsuite.rb, line 38 def <<(test) @tests << test self end