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_write_sequence()type(ESMF_HConfig)::hconfigcharacter(100)::bufferinteger::statuscharacter(:),allocatable::contentcontent='[]'hconfig=ESMF_HConfigCreate(content=content,_RC)write(buffer,*,iostat=status)hconfig_VERIFY(status)@assertEqual(expected=content,found=trim(buffer))call ESMF_HConfigDestroy(hconfig)content='[1, a, 3.14]'hconfig=ESMF_HConfigCreate(content=content,_RC)write(buffer,*,iostat=status)hconfig_VERIFY(status)@assertEqual(expected=content,found=trim(buffer))call ESMF_HConfigDestroy(hconfig)end subroutine test_write_sequence