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~7 MeterNode%get_child proc~test_get_exclusive->none~get_child~7 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~18 MeterNodeVector%push_back none~add_child->none~push_back~18 none~at~84 MeterNodeVector%at none~get_child~7->none~at~84 none~get_child~7->none~find_child none~begin~26 MeterNodeVector%begin none~get_exclusive->none~begin~26 none~get_inclusive MeterNode%get_inclusive none~get_exclusive->none~get_inclusive none~get~58 MeterNodeVectorIterator%get none~get_exclusive->none~get~58 none~next~27 MeterNodeVectorIterator%next none~get_exclusive->none~next~27 none~at_32~18 MeterNodeVector%at_32 none~at~84->none~at_32~18 none~find_child->none~at~84 get_total get_total none~get_inclusive->get_total none~capacity~103 MeterNodeVector%capacity none~push_back~18->none~capacity~103 none~resize~36 MeterNodeVector%resize none~push_back~18->none~resize~36 none~at_size_kind~18 MeterNodeVector%at_size_kind none~at_32~18->none~at_size_kind~18 none~resize_32~18 MeterNodeVector%resize_32 none~resize~36->none~resize_32~18

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