Using: indgen_uts__define.pro

File indgen_uts__define.pro, 327 bytes (added by mgalloy, 3 years ago)

Example of a test suite

Line 
1; docformat = 'rst'
2
3function indgen_uts::init, _extra=e
4  compile_opt strictarr
5
6  if (~self->mguttestsuite::init(_extra=e)) then return, 0
7
8  ;self->add, ['indgen_ut', 'findgen_ut']
9  self->add, /all
10 
11  return, 1
12end
13
14
15pro indgen_uts__define
16  compile_opt strictarr
17 
18  define = { indgen_uts, inherits MGutTestSuite }
19end