Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
subroutine test_stop_wrong_meter()type(TimeProfiler),target::profinteger::statusprof=TimeProfiler('top')call prof%start()call prof%start('timer_1')call prof%start('timer_2')@assertEqual(0,prof%get_status())call prof%stop('timer_1',rc=status)! not the current timer!C$ @assertEqual(INCORRECTLY_NESTED_METERS, prof%get_status())@assertExceptionRaised('Timer <timer_1> does not match start timer <timer_2>')call prof%finalize()end subroutine test_stop_wrong_meter