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~3 MeterNode%add_child proc~test_get_exclusive->none~add_child~3 none~get_child~18 MeterNode%get_child proc~test_get_exclusive->none~get_child~18 none~get_exclusive MeterNode%get_exclusive proc~test_get_exclusive->none~get_exclusive none~get_meter~2 MeterNode%get_meter proc~test_get_exclusive->none~get_meter~2 none~find_child MeterNode%find_child none~add_child~3->none~find_child none~get_depth~2 MeterNode%get_depth none~add_child~3->none~get_depth~2 none~push_back~46 MeterNodeVector%push_back none~add_child~3->none~push_back~46 none~at~208 MeterNodeVector%at none~get_child~18->none~at~208 none~get_child~18->none~find_child none~begin~70 MeterNodeVector%begin none~get_exclusive->none~begin~70 none~get_inclusive MeterNode%get_inclusive none~get_exclusive->none~get_inclusive none~get~136 MeterNodeVectorIterator%get none~get_exclusive->none~get~136 none~next~68 MeterNodeVectorIterator%next none~get_exclusive->none~next~68 none~at_32~43 MeterNodeVector%at_32 none~at~208->none~at_32~43 none~find_child->none~at~208 get_total get_total none~get_inclusive->get_total none~capacity~271 MeterNodeVector%capacity none~push_back~46->none~capacity~271 none~resize~92 MeterNodeVector%resize none~push_back~46->none~resize~92 none~at_size_kind~46 MeterNodeVector%at_size_kind none~at_32~43->none~at_size_kind~46 none~resize_32~43 MeterNodeVector%resize_32 none~resize~92->none~resize_32~43

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