Help for this page

Select Code to Download


  1. or download this
    foreach my $currentTestID (keys %$tests)
    {
        $tests->{$currentTestID}{validated} = validate($tests->{$currentTe
    +stID});
    }
    
  2. or download this
    sub doValidatedTests
    {
        my $tests = shift;
        doTest($_) foreach ( grep {$tests{$_}{validated}} keys %$tests );
    }