Class: Test::Unit::TestSuite

Inherits:
Object
  • Object
show all
Defined in:
lib/test/unit/testsuite.rb

Overview

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.

Constant Summary collapse

STARTED =
name + "::STARTED"
STARTED_OBJECT =
name + "::STARTED::OBJECT"
FINISHED =
name + "::FINISHED"
FINISHED_OBJECT =
name + "::FINISHED::OBJECT"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name = "Unnamed TestSuite", test_case = nil) ⇒ TestSuite

Creates a new TestSuite with the given name.



33
34
35
36
37
38
39
40
41
42
# File 'lib/test/unit/testsuite.rb', line 33

def initialize(name="Unnamed TestSuite", test_case=nil)
  @name = name
  @tests = []
  @test_case = test_case
  @n_tests = 0
  @priority = 0
  @start_time = nil
  @elapsed_time = nil
  @passed = true
end

Instance Attribute Details

#elapsed_timeObject (readonly)

Returns the value of attribute elapsed_time.



21
22
23
# File 'lib/test/unit/testsuite.rb', line 21

def elapsed_time
  @elapsed_time
end

#nameObject (readonly)

Returns the value of attribute name.



21
22
23
# File 'lib/test/unit/testsuite.rb', line 21

def name
  @name
end

#priorityObject

Test suite that has higher priority is ran prior to test suites that have lower priority.



25
26
27
# File 'lib/test/unit/testsuite.rb', line 25

def priority
  @priority
end

#start_timeObject (readonly)

Returns the value of attribute start_time.



21
22
23
# File 'lib/test/unit/testsuite.rb', line 21

def start_time
  @start_time
end

#test_caseObject (readonly)

Returns the value of attribute test_case.



21
22
23
# File 'lib/test/unit/testsuite.rb', line 21

def test_case
  @test_case
end

#testsObject (readonly)

Returns the value of attribute tests.



21
22
23
# File 'lib/test/unit/testsuite.rb', line 21

def tests
  @tests
end

Instance Method Details

#<<(test) ⇒ Object

Adds the test to the suite.



67
68
69
70
# File 'lib/test/unit/testsuite.rb', line 67

def <<(test)
  @tests << test
  self
end

#==(other) ⇒ Object

It's handy to be able to compare TestSuite instances.



100
101
102
103
104
# File 'lib/test/unit/testsuite.rb', line 100

def ==(other)
  return false unless(other.kind_of?(self.class))
  return false unless(@name == other.name)
  @tests == other.tests
end

#delete(test) ⇒ Object



72
73
74
# File 'lib/test/unit/testsuite.rb', line 72

def delete(test)
  @tests.delete(test)
end

#delete_tests(tests) ⇒ Object



76
77
78
# File 'lib/test/unit/testsuite.rb', line 76

def delete_tests(tests)
  @tests -= tests
end

#empty?Boolean

Returns:

  • (Boolean)


89
90
91
# File 'lib/test/unit/testsuite.rb', line 89

def empty?
  size.zero?
end

#passed?Boolean

Returns:

  • (Boolean)


106
107
108
# File 'lib/test/unit/testsuite.rb', line 106

def passed?
  @passed
end

#run(result, &progress_block) ⇒ Object

Runs the tests and/or suites contained in this TestSuite.



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/test/unit/testsuite.rb', line 46

def run(result, &progress_block)
  @start_time = Time.now
  yield(STARTED, name)
  yield(STARTED_OBJECT, self)
  run_startup(result)
  while test = @tests.shift
    @n_tests += test.size
    run_test(test, result, &progress_block)
    @passed = false unless test.passed?
  end
ensure
  begin
    run_shutdown(result)
  ensure
    @elapsed_time = Time.now - @start_time
    yield(FINISHED, name)
    yield(FINISHED_OBJECT, self)
  end
end

#sizeObject

Returns the rolled up number of tests in this suite; i.e. if the suite contains other suites, it counts the tests within those suites, not the suites themselves.



83
84
85
86
87
# File 'lib/test/unit/testsuite.rb', line 83

def size
  total_size = @n_tests
  @tests.each { |test| total_size += test.size }
  total_size
end

#to_sObject

Overridden to return the name given the suite at creation.



95
96
97
# File 'lib/test/unit/testsuite.rb', line 95

def to_s
  @name
end