test_get_exclusive Subroutine

public subroutine test_get_exclusive()

Arguments

None

Calls

proc~~test_get_exclusive~~CallsGraph proc~test_get_exclusive test_get_exclusive add_cycle add_cycle proc~test_get_exclusive->add_cycle assertequal assertequal proc~test_get_exclusive->assertequal none~add_child MeterNode%add_child proc~test_get_exclusive->none~add_child none~get_child~4 MeterNode%get_child proc~test_get_exclusive->none~get_child~4 none~get_exclusive MeterNode%get_exclusive proc~test_get_exclusive->none~get_exclusive none~get_meter MeterNode%get_meter proc~test_get_exclusive->none~get_meter none~find_child MeterNode%find_child none~add_child->none~find_child none~get_depth MeterNode%get_depth none~add_child->none~get_depth none~push_back MeterNodeVector%push_back none~add_child->none~push_back none~at~2 MeterNodeVector%at none~get_child~4->none~at~2 none~get_child~4->none~find_child none~begin MeterNodeVector%begin none~get_exclusive->none~begin none~get_inclusive MeterNode%get_inclusive none~get_exclusive->none~get_inclusive none~get~3 MeterNodeVectorIterator%get none~get_exclusive->none~get~3 none~next MeterNodeVectorIterator%next none~get_exclusive->none~next none~at_32 MeterNodeVector%at_32 none~at~2->none~at_32 none~find_child->none~at~2 get_total get_total none~get_inclusive->get_total none~capacity MeterNodeVector%capacity none~push_back->none~capacity none~resize~2 MeterNodeVector%resize none~push_back->none~resize~2 none~at_size_kind MeterNodeVector%at_size_kind none~at_32->none~at_size_kind none~resize_32 MeterNodeVector%resize_32 none~resize~2->none~resize_32

Source Code

   subroutine test_get_exclusive()
      type (MeterNode), target:: node
      class (AbstractMeter), pointer :: root_meter
      class (AbstractMeter), pointer :: submeter
      class (AbstractMeterNode), pointer :: child

      node = MeterNode('all', AdvancedMeter(MpiTimerGauge()))
      call node%add_child('sub1', AdvancedMeter(MpiTimerGauge()))

      root_meter => node%get_meter()
      child => node%get_child('sub1')
      submeter => child%get_meter()

      call submeter%add_cycle(1.0_REAL64)
      call root_meter%add_cycle(3.0_REAL64)
      @assertEqual(2.0, node%get_exclusive())

   end subroutine test_get_exclusive