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_3use testerimplicit none type(tester_t)::testcall test%init()call test%assert_equal([.false.,.true.],[1>2,2>1])call test%print()end program test_tester_3