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_get_attribute_scalar_int()type(Variable)::vartype(Attribute),pointer::attrclass(*),pointer::valuevar=Variable(type=pFIO_INT32,dimensions='x')call var%add_attribute('pet_age',15)attr=>var%get_attribute('pet_age')@assertEqual(EMPTY,attr%get_shape())value=>attr%get_value()select type(value)type is(integer(INT32))@assertEqual(15,value)class default@assertTrue(1==2)end select end subroutine test_get_attribute_scalar_int