Test realToChar to verify operation
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.
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.
subroutine testRealToChar
!! Test realToChar to verify operation
logical,dimension(2)::results
results(1) = realToChar(1.0_wp,'(1F10.5)')=='1.00000'
results(2) = realToChar(1.0_wp,'(1F10.5)',20)=='1.00000 '
if( .not.all(results) ) error stop "Failed realToChar check"
end subroutine testRealToChar