Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    use strict;
    ...
        # do sth. here
        last;
    }
    
  2. or download this
    #!/usr/bin/perl
    package HELPER;
    ...
        goto EXIT_TESTCASE; ##(3)##
    }
    1;
    
  3. or download this
    #!/usr/bin/perl -w
    package TESTCASE; ##(1)##
    ...
    handleResult(2);
    
    return 0;