File: test_helper.rb

package info (click to toggle)
ruby-prof 0.4.1-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 348 kB
  • ctags: 275
  • sloc: ruby: 990; ansic: 939; makefile: 20
file content (45 lines) | stat: -rw-r--r-- 1,164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
def print_results(result)
	printer = RubyProf::FlatPrinter.new(result)
	printer.print(STDOUT)
    
	STDOUT << "\n" * 2
    
	printer = RubyProf::GraphPrinter.new(result)
	printer.print(STDOUT)
end

def check_parent_times(method)
	return if method.parents.length == 0 

	parents_self_time = method.parents.values.inject(0) do |sum, call_info|
		sum + call_info.self_time
	end
	assert_in_delta(method.self_time, parents_self_time, 0.01, method.name)	
    
	parents_children_time = method.parents.values.inject(0) do |sum, call_info|
		sum + call_info.children_time
	end
	assert_in_delta(method.children_time, parents_children_time, 0.01, method.name)
end
  
def check_parent_calls(method)
	return if method.parents.length == 0 
	
	parent_calls = method.parents.values.inject(0) do |sum, call_info|
		sum + call_info.called
	end
	assert_equal(method.called, parent_calls, method.name)	
end
  
def check_child_times(method)
	return if method.children.length == 0
    
	children_total_time = method.children.values.inject(0) do |sum, call_info|
		sum + call_info.total_time
	end
	
	assert_in_delta(method.children_time, children_total_time, 0.01, method.name)
end