Nodes of different colours represent the following:
Solid arrows point from a file to a file which it depends on. A file
is dependent upon another if the latter must be compiled before the former
can be.
Source Code
! This file is part of fortran_tester! Copyright 2015 Pierre de Buyl! License: BSDprogram test_tester_7use testerimplicit none type(tester_t)::testcall test%init()call test%assert_equal([1,2,huge(1)],[0,2,huge(1)])call test%print()end program test_tester_7