Name | Total Lines | Lines of Code | Total Coverage | Code Coverage |
---|---|---|---|---|
lib/fumoffu/handler.rb | 18 | 11 | 100.00%
|
100.00%
|
Code reported as executed by Ruby looks like this...and this: this line is also marked as covered.Lines considered as run by rcov, but not reported by Ruby, look like this,and this: these lines were inferred by rcov (using simple heuristics).Finally, here's a line marked as not executed.
1 # Handlers are use the layerof the application that are interacting directly with |
2 # the java layer. |
3 module Fumoffu |
4 class Handler |
5 include Fumoffu::Utils::ComponentSearch |
6 |
7 def initialize |
8 @controllers = Hash.new |
9 end |
10 |
11 # This method must be overidden |
12 def handleAction evt, action, caller |
13 # DO NOTHING - this method shall be implemented by the children |
14 return false |
15 end |
16 |
17 end |
18 end |
Generated on Tue Apr 19 07:59:25 +0200 2011 with rcov 0.9.8