; docformat = 'rst' ;+ ; Setup before each test is run. ;- pro mg_termistty_ut::setup compile_opt strictarr end ;+ ; Cleanup after each test is run. ;- pro mg_termistty_ut::teardown compile_opt strictarr end function mg_termistty_ut::test_boolean compile_opt strictarr isTty = mg_termistty() assert, isTty eq 0B || isTty eq 1B, 'assert invalid boolean value' return, 1 end ;+ ; Define instance variables. ;- pro mg_termistty_ut__define compile_opt strictarr define = { mg_termistty_ut, inherits MGutTestCase } end