Class: Megatest::AbstractExecutor
- Inherits:
-
Object
- Object
- Megatest::AbstractExecutor
show all
- Defined in:
- lib/megatest/executor.rb
Instance Method Summary
collapse
Constructor Details
Returns a new instance of AbstractExecutor.
7
8
9
10
|
# File 'lib/megatest/executor.rb', line 7
def initialize(config, out)
@config = config
@out = Output.new(config, out, colors: config.colors(out))
end
|
Instance Method Details
#concurrent? ⇒ Boolean
16
17
18
|
# File 'lib/megatest/executor.rb', line 16
def concurrent?
raise NotImplementedError
end
|
#run(queue, reporters) ⇒ Object
12
13
14
|
# File 'lib/megatest/executor.rb', line 12
def run(queue, reporters)
raise NotImplementedError
end
|
#wall_time ⇒ Object
20
21
22
|
# File 'lib/megatest/executor.rb', line 20
def wall_time
raise NotImplementedError
end
|