First unit test.
program jf_test_1 !! First unit test. use jf_test_1_mod , only: test_1 implicit none integer :: n_errors n_errors = 0 call test_1(n_errors) if (n_errors /= 0) stop 1 end program jf_test_1