; docformat = 'rst' ;+ ; Setup before each test is run. ;- pro mg_pid_ut::setup compile_opt strictarr end ;+ ; Cleanup after each test is run. ;- pro mg_pid_ut::teardown compile_opt strictarr end function mg_pid_ut::test_type compile_opt strictarr pid = mg_pid() assert, size(pid, /type) eq 7L, 'incorrect type' return, 1 end ;+ ; Define instance variables. ;- pro mg_pid_ut__define compile_opt strictarr define = { mg_pid_ut, inherits MGutTestCase } end