DAMASK_EICMD/src/test/test_system_routines.f90

18 lines
290 B
Fortran
Raw Normal View History

2023-11-25 20:29:00 +05:30
module test_system_routines
use system_routines
implicit none(type,external)
private
public :: test_system_routines_run
contains
subroutine test_system_routines_run()
call system_routines_selfTest()
end subroutine test_system_routines_run
end module test_system_routines