mirror of
https://github.com/JHUAPL/kaiju.git
synced 2026-01-09 15:17:56 -05:00
16 lines
496 B
Fortran
16 lines
496 B
Fortran
module testHelper
|
|
|
|
! limiting namespace pollution from pFUnit
|
|
use funit, only: SourceLocation,anyExceptions,&
|
|
assertTrue,assertFalse,assertEqual,assertLessThanOrEqual, &
|
|
assertLessThan,assertGreaterThan,assertGreaterThanOrEqual, &
|
|
assertAny,assertAll,assertNotAll,assertIsFinite, &
|
|
assertNone,assertExceptionRaised,assertSameShape,assertIsNaN
|
|
|
|
implicit none
|
|
|
|
contains
|
|
|
|
end module testHelper
|
|
|