Class: Minitest::Memory::AllocationCounter::Result
- Inherits:
-
Struct
- Object
- Struct
- Minitest::Memory::AllocationCounter::Result
- Defined in:
- lib/minitest/memory.rb
Overview
Holds allocation counting results: allocated maps matched
classes to Allocations, ignored maps unmatched classes,
and total is the aggregate Allocation across all objects.
Instance Attribute Summary collapse
-
#allocated ⇒ Object
Returns the value of attribute allocated.
-
#ignored ⇒ Object
Returns the value of attribute ignored.
-
#total ⇒ Object
Returns the value of attribute total.
Instance Attribute Details
#allocated ⇒ Object
Returns the value of attribute allocated
24 25 26 |
# File 'lib/minitest/memory.rb', line 24 def allocated @allocated end |
#ignored ⇒ Object
Returns the value of attribute ignored
24 25 26 |
# File 'lib/minitest/memory.rb', line 24 def ignored @ignored end |
#total ⇒ Object
Returns the value of attribute total
24 25 26 |
# File 'lib/minitest/memory.rb', line 24 def total @total end |